diff --git a/Controller/Controller.php b/Controller/Controller.php index 4b3e7a3..08f05ae 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 = 'Knowledgebase'; @@ -54,7 +54,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1005900000; @@ -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/WikiCategory.php b/Models/WikiCategory.php index bbbf63b..62e5537 100644 --- a/Models/WikiCategory.php +++ b/Models/WikiCategory.php @@ -27,7 +27,7 @@ class WikiCategory implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -35,7 +35,7 @@ class WikiCategory implements \JsonSerializable /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; diff --git a/Models/WikiCategoryMapper.php b/Models/WikiCategoryMapper.php index 29bb9c6..19e7675 100644 --- a/Models/WikiCategoryMapper.php +++ b/Models/WikiCategoryMapper.php @@ -29,7 +29,7 @@ final class WikiCategoryMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -41,7 +41,7 @@ final class WikiCategoryMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'wiki_category'; @@ -49,7 +49,7 @@ final class WikiCategoryMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'wiki_category_id'; diff --git a/Models/WikiDoc.php b/Models/WikiDoc.php index 4251cb1..eef4964 100644 --- a/Models/WikiDoc.php +++ b/Models/WikiDoc.php @@ -27,7 +27,7 @@ class WikiDoc implements \JsonSerializable /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -35,7 +35,7 @@ class WikiDoc implements \JsonSerializable /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; diff --git a/Models/WikiDocMapper.php b/Models/WikiDocMapper.php index 2a1d263..26ff0f8 100644 --- a/Models/WikiDocMapper.php +++ b/Models/WikiDocMapper.php @@ -29,7 +29,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -46,7 +46,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ /* @@ -62,7 +62,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Has owns one relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $ownsOne = [ @@ -75,7 +75,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'wiki_article'; @@ -83,7 +83,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'wiki_article_created_at'; @@ -91,7 +91,7 @@ final class WikiDocMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'wiki_article_id';