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

View File

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

View File

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

View File

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