phpcs fix

This commit is contained in:
Dennis Eichhorn 2020-01-26 12:27:56 +01:00
parent 4810dbebcd
commit 6f286f9e59
4 changed files with 19 additions and 19 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 = 'Editor'; public const MODULE_NAME = 'Editor';
@ -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 = 1005300000; public const MODULE_ID = 1005300000;
@ -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

@ -29,7 +29,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Article ID. * Article ID.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private int $id = 0; private int $id = 0;
@ -37,7 +37,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Title. * Title.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private string $title = ''; private string $title = '';
@ -45,7 +45,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Content. * Content.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private string $content = ''; private string $content = '';
@ -53,7 +53,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Unparsed. * Unparsed.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private string $plain = ''; private string $plain = '';
@ -61,7 +61,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Doc path for organizing. * Doc path for organizing.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private string $path = ''; private string $path = '';
@ -69,7 +69,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Created. * Created.
* *
* @var \DateTime * @var \DateTime
* @since 1.0.0 * @since 1.0.0
*/ */
private \DateTime $createdAt; private \DateTime $createdAt;
@ -77,7 +77,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable
/** /**
* Creator. * Creator.
* *
* @var int * @var int
* @since 1.0.0 * @since 1.0.0
*/ */
private $createdBy = 0; private $createdBy = 0;

View File

@ -30,7 +30,7 @@ final class EditorDocMapper extends DataMapperAbstract
/** /**
* Columns. * Columns.
* *
* @var array<string, array<string, bool|string>> * @var array<string, array<string, bool|string>>
* @since 1.0.0 * @since 1.0.0
*/ */
protected static array $columns = [ protected static array $columns = [
@ -46,7 +46,7 @@ final class EditorDocMapper extends DataMapperAbstract
/** /**
* Belongs to. * Belongs to.
* *
* @var array<string, array<string, string>> * @var array<string, array<string, string>>
* @since 1.0.0 * @since 1.0.0
*/ */
protected static array $belongsTo = [ protected static array $belongsTo = [
@ -59,7 +59,7 @@ final class EditorDocMapper extends DataMapperAbstract
/** /**
* Primary table. * Primary table.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
protected static string $table = 'editor_doc'; protected static string $table = 'editor_doc';
@ -67,7 +67,7 @@ final class EditorDocMapper extends DataMapperAbstract
/** /**
* Primary field name. * Primary field name.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
protected static string $primaryField = 'editor_doc_id'; protected static string $primaryField = 'editor_doc_id';
@ -75,7 +75,7 @@ final class EditorDocMapper extends DataMapperAbstract
/** /**
* Created at. * Created at.
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
protected static string $createdAt = 'editor_doc_created_at'; protected static string $createdAt = 'editor_doc_created_at';

View File

@ -34,7 +34,7 @@ class BaseView extends View
/** /**
* Editor id * Editor id
* *
* @var string * @var string
* @since 1.0.0 * @since 1.0.0
*/ */
private $id = ''; private $id = '';