phpcs fix

This commit is contained in:
Dennis Eichhorn 2020-01-26 12:27:56 +01:00
parent eabf90341a
commit f07ed07725
5 changed files with 20 additions and 20 deletions

View File

@ -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 = [];

View File

@ -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;

View File

@ -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;

View File

@ -30,7 +30,7 @@ class Ticket
/**
* ID.
*
* @var int
* @var int
* @since 1.0.0
*/
protected int $id = 0;

View File

@ -30,7 +30,7 @@ final class TicketMapper extends DataMapperAbstract
/**
* Columns.
*
* @var array<string, array<string, bool|string>>
* @var array<string, array<string, bool|string>>
* @since 1.0.0
*/
protected static array $columns = [
@ -41,7 +41,7 @@ final class TicketMapper extends DataMapperAbstract
/**
* Has one relation.
*
* @var array<string, array<string, string>>
* @var array<string, array<string, string>>
* @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';