diff --git a/Controller/Controller.php b/Controller/Controller.php index 39e7b25..9161b80 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 = 'Comments'; @@ -54,7 +54,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1006100000; @@ -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/Comment.php b/Models/Comment.php index 4faf56f..d1c8237 100644 --- a/Models/Comment.php +++ b/Models/Comment.php @@ -27,7 +27,7 @@ class Comment /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; diff --git a/Models/CommentList.php b/Models/CommentList.php index 69f669e..5b1725e 100644 --- a/Models/CommentList.php +++ b/Models/CommentList.php @@ -27,14 +27,14 @@ class CommentList /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; /** * - * @var array + * @var array * @since 1.0.0 */ private array $comments = []; diff --git a/Models/CommentListMapper.php b/Models/CommentListMapper.php index e12b735..f1b1071 100644 --- a/Models/CommentListMapper.php +++ b/Models/CommentListMapper.php @@ -29,7 +29,7 @@ final class CommentListMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -39,7 +39,7 @@ final class CommentListMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -54,7 +54,7 @@ final class CommentListMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'comments_list'; @@ -62,7 +62,7 @@ final class CommentListMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'comments_list_id'; diff --git a/Models/CommentMapper.php b/Models/CommentMapper.php index 1aa315b..49e113f 100644 --- a/Models/CommentMapper.php +++ b/Models/CommentMapper.php @@ -29,7 +29,7 @@ final class CommentMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -47,7 +47,7 @@ final class CommentMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'comments_comment'; @@ -55,7 +55,7 @@ final class CommentMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'comments_comment_created_at'; @@ -63,7 +63,7 @@ final class CommentMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'comments_comment_id';