diff --git a/Controller/Controller.php b/Controller/Controller.php index 0e13cf1..d8294ae 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 = 'Auditor'; @@ -55,7 +55,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module id. * - * @var int + * @var int * @since 1.0.0 */ public const MODULE_ID = 1006200000; @@ -63,7 +63,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Providing. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $providing = []; @@ -71,7 +71,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Dependencies. * - * @var string[] + * @var string[] * @since 1.0.0 */ protected static array $dependencies = []; diff --git a/Models/Audit.php b/Models/Audit.php index 56ff413..3641be9 100644 --- a/Models/Audit.php +++ b/Models/Audit.php @@ -29,7 +29,7 @@ class Audit /** * Audit id. * - * @var int + * @var int * @since 1.0.0 */ private int $id = 0; @@ -37,7 +37,7 @@ class Audit /** * Audit type. * - * @var int + * @var int * @since 1.0.0 */ private int $type; @@ -45,7 +45,7 @@ class Audit /** * Audit subtype. * - * @var int + * @var int * @since 1.0.0 */ private int $subtype; @@ -53,7 +53,7 @@ class Audit /** * Audit module. * - * @var null|string + * @var null|string * @since 1.0.0 */ private ?string $module; @@ -63,7 +63,7 @@ class Audit * * This could be used to reference other model ids * - * @var null|string + * @var null|string * @since 1.0.0 */ private ?string $ref; @@ -73,7 +73,7 @@ class Audit * * Additional audit information * - * @var null|string + * @var null|string * @since 1.0.0 */ private ?string $content; @@ -81,7 +81,7 @@ class Audit /** * Old value. * - * @var null|string + * @var null|string * @since 1.0.0 */ private ?string $old; @@ -89,7 +89,7 @@ class Audit /** * New value. * - * @var null|string + * @var null|string * @since 1.0.0 */ private ?string $new; @@ -97,7 +97,7 @@ class Audit /** * Account. * - * @var Account|int + * @var Account|int * @since 1.0.0 */ private $createdBy; @@ -105,7 +105,7 @@ class Audit /** * Created at. * - * @var \DateTime + * @var \DateTime * @since 1.0.0 */ private \DateTime $createdAt; @@ -113,7 +113,7 @@ class Audit /** * Ip of creator. * - * @var int + * @var int * @since 1.0.0 */ private int $ip = 0; diff --git a/Models/AuditMapper.php b/Models/AuditMapper.php index cc5c90e..fd7a286 100644 --- a/Models/AuditMapper.php +++ b/Models/AuditMapper.php @@ -30,7 +30,7 @@ final class AuditMapper extends DataMapperAbstract /** * Columns. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $columns = [ @@ -50,7 +50,7 @@ final class AuditMapper extends DataMapperAbstract /** * Belongs to. * - * @var array> + * @var array> * @since 1.0.0 */ protected static array $belongsTo = [ @@ -63,7 +63,7 @@ final class AuditMapper extends DataMapperAbstract /** * Primary table. * - * @var string + * @var string * @since 1.0.0 */ protected static string $table = 'auditor_audit'; @@ -71,7 +71,7 @@ final class AuditMapper extends DataMapperAbstract /** * Primary field name. * - * @var string + * @var string * @since 1.0.0 */ protected static string $primaryField = 'auditor_audit_id'; @@ -79,7 +79,7 @@ final class AuditMapper extends DataMapperAbstract /** * Created at. * - * @var string + * @var string * @since 1.0.0 */ protected static string $createdAt = 'auditor_audit_created_at';