From 3493774058b3bef58f2e0cac5468e44b4761e163 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 26 Jan 2020 12:27:56 +0100 Subject: [PATCH] phpcs fix --- Controller/Controller.php | 12 ++++++------ Models/KanbanBoard.php | 6 +++--- Models/KanbanBoardMapper.php | 12 ++++++------ Models/KanbanCard.php | 6 +++--- Models/KanbanCardComment.php | 4 ++-- Models/KanbanCardCommentMapper.php | 10 +++++----- Models/KanbanCardMapper.php | 12 ++++++------ Models/KanbanColumn.php | 4 ++-- Models/KanbanColumnMapper.php | 8 ++++---- 9 files changed, 37 insertions(+), 37 deletions(-) diff --git a/Controller/Controller.php b/Controller/Controller.php index eb2c468..f0dbd28 100644 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -30,7 +30,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module path. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_PATH = __DIR__ . '/../'; @@ -38,7 +38,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module version. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_VERSION = '1.0.0'; @@ -46,7 +46,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module name. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_NAME = 'Kanban'; @@ -54,7 +54,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1005800000; @@ -62,7 +62,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Providing. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $providing = []; @@ -70,7 +70,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Dependencies. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $dependencies = []; diff --git a/Models/KanbanBoard.php b/Models/KanbanBoard.php index fa76fd7..90f4b25 100644 --- a/Models/KanbanBoard.php +++ b/Models/KanbanBoard.php @@ -27,7 +27,7 @@ class KanbanBoard implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -35,7 +35,7 @@ class KanbanBoard implements \JsonSerializable /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; @@ -46,7 +46,7 @@ class KanbanBoard implements \JsonSerializable /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; diff --git a/Models/KanbanBoardMapper.php b/Models/KanbanBoardMapper.php index 481d41f..f2da5b0 100644 --- a/Models/KanbanBoardMapper.php +++ b/Models/KanbanBoardMapper.php @@ -30,7 +30,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -46,7 +46,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -61,7 +61,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Belongs to. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $belongsTo = [ @@ -74,7 +74,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'kanban_board'; @@ -82,7 +82,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'kanban_board_created_at'; @@ -90,7 +90,7 @@ final class KanbanBoardMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'kanban_board_id'; diff --git a/Models/KanbanCard.php b/Models/KanbanCard.php index 50ca9d3..7994989 100644 --- a/Models/KanbanCard.php +++ b/Models/KanbanCard.php @@ -29,7 +29,7 @@ class KanbanCard implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -37,7 +37,7 @@ class KanbanCard implements \JsonSerializable /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; @@ -48,7 +48,7 @@ class KanbanCard implements \JsonSerializable /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; diff --git a/Models/KanbanCardComment.php b/Models/KanbanCardComment.php index 5c02ae4..408beb1 100644 --- a/Models/KanbanCardComment.php +++ b/Models/KanbanCardComment.php @@ -27,14 +27,14 @@ class KanbanCardComment implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; diff --git a/Models/KanbanCardCommentMapper.php b/Models/KanbanCardCommentMapper.php index 3b91c7a..c7569f3 100644 --- a/Models/KanbanCardCommentMapper.php +++ b/Models/KanbanCardCommentMapper.php @@ -30,7 +30,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -44,7 +44,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -59,7 +59,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'kanban_card_comment'; @@ -67,7 +67,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'kanban_card_comment_created_at'; @@ -75,7 +75,7 @@ final class KanbanCardCommentMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'kanban_card_comment_id'; diff --git a/Models/KanbanCardMapper.php b/Models/KanbanCardMapper.php index 583a64e..f1ed291 100644 --- a/Models/KanbanCardMapper.php +++ b/Models/KanbanCardMapper.php @@ -31,7 +31,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -50,7 +50,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Belongs to. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $belongsTo = [ @@ -63,7 +63,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -84,7 +84,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'kanban_card'; @@ -92,7 +92,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'kanban_card_created_at'; @@ -100,7 +100,7 @@ final class KanbanCardMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'kanban_card_id'; diff --git a/Models/KanbanColumn.php b/Models/KanbanColumn.php index 31634a9..bd043d1 100644 --- a/Models/KanbanColumn.php +++ b/Models/KanbanColumn.php @@ -27,7 +27,7 @@ class KanbanColumn implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -35,7 +35,7 @@ class KanbanColumn implements \JsonSerializable /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; diff --git a/Models/KanbanColumnMapper.php b/Models/KanbanColumnMapper.php index 5ca5699..93999f9 100644 --- a/Models/KanbanColumnMapper.php +++ b/Models/KanbanColumnMapper.php @@ -29,7 +29,7 @@ final class KanbanColumnMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -42,7 +42,7 @@ final class KanbanColumnMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -57,7 +57,7 @@ final class KanbanColumnMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'kanban_column'; @@ -65,7 +65,7 @@ final class KanbanColumnMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'kanban_column_id';