diff --git a/Controller/Controller.php b/Controller/Controller.php index a16e0ed..ea78aee 100644 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -31,7 +31,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module path. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_PATH = __DIR__ . '/../'; @@ -39,7 +39,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module version. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_VERSION = '1.0.0'; @@ -47,7 +47,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module name. * - * @var string + * @var string * @since 1.0.0 */ public const MODULE_NAME = 'Support'; @@ -55,7 +55,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1002900000; @@ -63,7 +63,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Providing. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $providing = [ @@ -73,7 +73,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Dependencies. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $dependencies = []; diff --git a/Models/Issue.php b/Models/Issue.php index 349c792..58f5204 100644 --- a/Models/Issue.php +++ b/Models/Issue.php @@ -27,7 +27,7 @@ class Issue /** * Id. * - * @var int + * @var int * @since 1.0.0 */ private int $id = 0; @@ -35,7 +35,7 @@ class Issue /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; @@ -43,7 +43,7 @@ class Issue /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; @@ -51,7 +51,7 @@ class Issue /** * Created. * - * @var \DateTime + * @var \DateTime * @since 1.0.0 */ private \DateTime $created; @@ -69,7 +69,7 @@ class Issue /** * Creator. * - * @var int + * @var int * @since 1.0.0 */ private ?int $creator = null; diff --git a/Models/Message.php b/Models/Message.php index 686edec..e53a118 100644 --- a/Models/Message.php +++ b/Models/Message.php @@ -27,7 +27,7 @@ class Message /** * Name. * - * @var string + * @var string * @since 1.0.0 */ private string $name = ''; @@ -35,7 +35,7 @@ class Message /** * Description. * - * @var string + * @var string * @since 1.0.0 */ private string $description = ''; @@ -43,7 +43,7 @@ class Message /** * Created. * - * @var \DateTime + * @var \DateTime * @since 1.0.0 */ private \DateTime $created; @@ -51,7 +51,7 @@ class Message /** * Creator. * - * @var int + * @var int * @since 1.0.0 */ private ?int $creator = null; diff --git a/Models/Ticket.php b/Models/Ticket.php index 3a27f5d..bdb287a 100644 --- a/Models/Ticket.php +++ b/Models/Ticket.php @@ -30,7 +30,7 @@ class Ticket /** * ID. * - * @var int + * @var int * @since 1.0.0 */ protected int $id = 0; diff --git a/Models/TicketMapper.php b/Models/TicketMapper.php index 18b8244..feb2b41 100644 --- a/Models/TicketMapper.php +++ b/Models/TicketMapper.php @@ -30,7 +30,7 @@ final class TicketMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -41,7 +41,7 @@ final class TicketMapper extends DataMapperAbstract /** * Has one relation. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $ownsOne = [ @@ -54,7 +54,7 @@ final class TicketMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'support_ticket'; @@ -62,7 +62,7 @@ final class TicketMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'support_ticket_id';