Automated formatting changes

This commit is contained in:
Formatter Bot 2020-10-21 21:11:24 +00:00
parent 2521309ce9
commit a69ed50261
4 changed files with 12 additions and 12 deletions

View File

@ -51,9 +51,9 @@ final class KanbanBoardMapper extends DataMapperAbstract
*/ */
protected static array $hasMany = [ protected static array $hasMany = [
'columns' => [ 'columns' => [
'mapper' => KanbanColumnMapper::class, 'mapper' => KanbanColumnMapper::class,
'table' => 'kanban_column', 'table' => 'kanban_column',
'self' => 'kanban_column_board', 'self' => 'kanban_column_board',
'external' => null, 'external' => null,
], ],
]; ];
@ -66,7 +66,7 @@ final class KanbanBoardMapper extends DataMapperAbstract
*/ */
protected static array $belongsTo = [ protected static array $belongsTo = [
'createdBy' => [ 'createdBy' => [
'mapper' => AccountMapper::class, 'mapper' => AccountMapper::class,
'external' => 'kanban_board_created_by', 'external' => 'kanban_board_created_by',
], ],
]; ];

View File

@ -65,7 +65,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract
*/ */
protected static array $belongsTo = [ protected static array $belongsTo = [
'createdBy' => [ 'createdBy' => [
'mapper' => AccountMapper::class, 'mapper' => AccountMapper::class,
'external' => 'kanban_card_comment_created_by', 'external' => 'kanban_card_comment_created_by',
], ],
]; ];

View File

@ -55,7 +55,7 @@ final class KanbanCardMapper extends DataMapperAbstract
*/ */
protected static array $belongsTo = [ protected static array $belongsTo = [
'createdBy' => [ 'createdBy' => [
'mapper' => AccountMapper::class, 'mapper' => AccountMapper::class,
'external' => 'kanban_card_created_by', 'external' => 'kanban_card_created_by',
], ],
]; ];
@ -74,9 +74,9 @@ final class KanbanCardMapper extends DataMapperAbstract
'self' => 'kanban_card_media_dst', 'self' => 'kanban_card_media_dst',
], ],
'comments' => [ 'comments' => [
'mapper' => KanbanCardCommentMapper::class, 'mapper' => KanbanCardCommentMapper::class,
'table' => 'kanban_card_comment', 'table' => 'kanban_card_comment',
'self' => 'kanban_card_comment_card', 'self' => 'kanban_card_comment_card',
'external' => null, 'external' => null,
], ],
]; ];

View File

@ -47,9 +47,9 @@ final class KanbanColumnMapper extends DataMapperAbstract
*/ */
protected static array $hasMany = [ protected static array $hasMany = [
'cards' => [ 'cards' => [
'mapper' => KanbanCardMapper::class, 'mapper' => KanbanCardMapper::class,
'table' => 'kanban_card', 'table' => 'kanban_card',
'self' => 'kanban_card_column', 'self' => 'kanban_card_column',
'external' => null, 'external' => null,
], ],
]; ];