phpcs fix

This commit is contained in:
Dennis Eichhorn 2020-01-26 12:27:56 +01:00
parent f75d6e1d71
commit a29f3dad1f
4 changed files with 17 additions and 17 deletions

View File

@ -30,7 +30,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Module path. * Module path.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODULE_PATH = __DIR__ . '/../'; public const MODULE_PATH = __DIR__ . '/../';
@ -38,7 +38,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Module version. * Module version.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODULE_VERSION = '1.0.0'; public const MODULE_VERSION = '1.0.0';
@ -46,7 +46,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Module name. * Module name.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODULE_NAME = 'Billing'; public const MODULE_NAME = 'Billing';
@ -54,7 +54,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Module id. * Module id.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
public const MODULE_ID = 1005100000; public const MODULE_ID = 1005100000;
@ -62,7 +62,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Providing. * Providing.
* *
* @var string[] * @var string[]
* @since 1.0.0 * @since 1.0.0
*/ */
protected static array $providing = []; protected static array $providing = [];
@ -70,7 +70,7 @@ class Controller extends ModuleAbstract implements WebInterface
/** /**
* Dependencies. * Dependencies.
* *
* @var string[] * @var string[]
* @since 1.0.0 * @since 1.0.0
*/ */
protected static array $dependencies = []; protected static array $dependencies = [];

View File

@ -30,7 +30,7 @@ class Invoice implements \JsonSerializable
/** /**
* ID. * ID.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
protected int $id = 0; protected int $id = 0;
@ -38,7 +38,7 @@ class Invoice implements \JsonSerializable
/** /**
* Number ID. * Number ID.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private string $number = ''; private string $number = '';
@ -46,7 +46,7 @@ class Invoice implements \JsonSerializable
/** /**
* Invoice type. * Invoice type.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private int $type = InvoiceType::BILL; private int $type = InvoiceType::BILL;
@ -54,7 +54,7 @@ class Invoice implements \JsonSerializable
/** /**
* Invoice status. * Invoice status.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private int $status = InvoiceStatus::DRAFT; private int $status = InvoiceStatus::DRAFT;
@ -62,7 +62,7 @@ class Invoice implements \JsonSerializable
/** /**
* Invoice created at. * Invoice created at.
* *
* @var null|\DateTime * @var null|\DateTime
* @since 1.0.0 * @since 1.0.0
*/ */
private ?\DateTime $createdAt = null; private ?\DateTime $createdAt = null;
@ -70,7 +70,7 @@ class Invoice implements \JsonSerializable
/** /**
* Invoice send at. * Invoice send at.
* *
* @var null|\DateTime * @var null|\DateTime
* @since 1.0.0 * @since 1.0.0
*/ */
private ?\DateTime $send = null; private ?\DateTime $send = null;
@ -106,7 +106,7 @@ class Invoice implements \JsonSerializable
/** /**
* Person refering for this order. * Person refering for this order.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private int $referer = 0; private int $referer = 0;
@ -148,7 +148,7 @@ class Invoice implements \JsonSerializable
/** /**
* Reference to other invoice (delivery note/credit note etc). * Reference to other invoice (delivery note/credit note etc).
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private int $reference = 0; private int $reference = 0;

View File

@ -29,7 +29,7 @@ class InvoiceElement implements \JsonSerializable
/** /**
* ID. * ID.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
protected int $id = 0; protected int $id = 0;

View File

@ -29,7 +29,7 @@ final class InvoiceMapper extends DataMapperAbstract
/** /**
* Primary field name. * Primary field name.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
protected static string $primaryField = 'billing_invoice_id'; protected static string $primaryField = 'billing_invoice_id';
@ -37,7 +37,7 @@ final class InvoiceMapper extends DataMapperAbstract
/** /**
* Primary table. * Primary table.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
protected static string $table = 'billing_invoice'; protected static string $table = 'billing_invoice';