diff --git a/Controller/Controller.php b/Controller/Controller.php index 4b0667e..90ea7c1 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 = 'Marketing'; @@ -54,7 +54,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1001900000; @@ -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/Promotion.php b/Models/Promotion.php index 08367f6..640fb0c 100644 --- a/Models/Promotion.php +++ b/Models/Promotion.php @@ -31,7 +31,7 @@ class Promotion /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; @@ -43,14 +43,14 @@ class Promotion /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; @@ -72,7 +72,7 @@ class Promotion /** * Created at. * - * @var null|\DateTime + * @var null|\DateTime * @since 1.0.0 */ private ?\DateTime $createdAt = null; @@ -80,7 +80,7 @@ class Promotion /** * Created by. * - * @var int + * @var int * @since 1.0.0 */ private $createdBy = 0; @@ -169,7 +169,7 @@ class Promotion /** * Remove task * - * @param int $id Id to remove. + * @param int $id id to remove * * @return bool * diff --git a/Models/PromotionMapper.php b/Models/PromotionMapper.php index 911161e..e510f0c 100644 --- a/Models/PromotionMapper.php +++ b/Models/PromotionMapper.php @@ -32,7 +32,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -54,7 +54,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Has many relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $hasMany = [ @@ -75,7 +75,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Has one relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $ownsOne = [ @@ -88,7 +88,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'marketing_promotion'; @@ -96,7 +96,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'marketing_promotion_created_at'; @@ -104,7 +104,7 @@ final class PromotionMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'marketing_promotion_id';