bug fixes and template adjustments

This commit is contained in:
Dennis Eichhorn 2021-07-31 17:20:49 +02:00
parent 4f2571f1a0
commit 37d95ee8c5
4 changed files with 10 additions and 1 deletions

View File

@ -138,6 +138,12 @@
"default": null,
"null": true
},
"kanban_card_style": {
"name": "kanban_card_style",
"type": "TEXT",
"null": true,
"default": null
},
"kanban_card_type": {
"name": "kanban_card_type",
"type": "TINYINT",

View File

@ -52,6 +52,8 @@ class KanbanCard implements \JsonSerializable
public string $color = '';
public string $style = '';
/**
* Description.
*

View File

@ -40,6 +40,7 @@ final class KanbanCardMapper extends DataMapperAbstract
'kanban_card_name' => ['name' => 'kanban_card_name', 'type' => 'string', 'internal' => 'name'],
'kanban_card_description' => ['name' => 'kanban_card_description', 'type' => 'string', 'internal' => 'description'],
'kanban_card_descriptionraw' => ['name' => 'kanban_card_descriptionraw', 'type' => 'string', 'internal' => 'descriptionRaw'],
'kanban_card_style' => ['name' => 'kanban_card_style', 'type' => 'string', 'internal' => 'style'],
'kanban_card_type' => ['name' => 'kanban_card_type', 'type' => 'int', 'internal' => 'type'],
'kanban_card_status' => ['name' => 'kanban_card_status', 'type' => 'int', 'internal' => 'status'],
'kanban_card_order' => ['name' => 'kanban_card_order', 'type' => 'int', 'internal' => 'order'],

View File

@ -10,7 +10,7 @@
"require-dev": {
"phpunit/phpunit": ">=9.4",
"friendsofphp/php-cs-fixer": ">=3.0",
"squizlabs/php_codesniffer": ">=3.5",
"squizlabs/php_codesniffer": ">=3.6",
"phpmd/phpmd": ">=2.9",
"phpstan/phpstan": ">=0.12.58",
"phan/phan": ">=3.2.6"