Fix null typehint order

This commit is contained in:
Dennis Eichhorn 2018-12-10 18:13:38 +01:00
parent 972563590d
commit 80d7724384
2 changed files with 12 additions and 12 deletions

View File

@ -53,7 +53,7 @@ class Audit
/** /**
* Audit module. * Audit module.
* *
* @var string|null * @var null|string
* @since 1.0.0 * @since 1.0.0
*/ */
private $module = null; private $module = null;
@ -63,7 +63,7 @@ class Audit
* *
* This could be used to reference other model ids * This could be used to reference other model ids
* *
* @var string|null * @var null|string
* @since 1.0.0 * @since 1.0.0
*/ */
private $ref = null; private $ref = null;
@ -73,7 +73,7 @@ class Audit
* *
* Additional audit information * Additional audit information
* *
* @var string|null * @var null|string
* @since 1.0.0 * @since 1.0.0
*/ */
private $content = null; private $content = null;
@ -81,7 +81,7 @@ class Audit
/** /**
* Old value. * Old value.
* *
* @var string|null * @var null|string
* @since 1.0.0 * @since 1.0.0
*/ */
private $old = null; private $old = null;
@ -89,7 +89,7 @@ class Audit
/** /**
* New value. * New value.
* *
* @var string|null * @var null|string
* @since 1.0.0 * @since 1.0.0
*/ */
private $new = null; private $new = null;
@ -191,7 +191,7 @@ class Audit
/** /**
* Get Module. * Get Module.
* *
* @return string|null * @return null|string
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -205,7 +205,7 @@ class Audit
* *
* If existing this can be a reference to another model * If existing this can be a reference to another model
* *
* @return string|null * @return null|string
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -217,7 +217,7 @@ class Audit
/** /**
* Get content. * Get content.
* *
* @return string|null * @return null|string
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -229,7 +229,7 @@ class Audit
/** /**
* Get old value. * Get old value.
* *
* @return string|null * @return null|string
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -241,7 +241,7 @@ class Audit
/** /**
* Get new value. * Get new value.
* *
* @return string|null * @return null|string
* *
* @since 1.0.0 * @since 1.0.0
*/ */
@ -253,7 +253,7 @@ class Audit
/** /**
* Get created by. * Get created by.
* *
* @return int|Account * @return Account|int
* *
* @since 1.0.0 * @since 1.0.0
*/ */

View File

@ -32,7 +32,7 @@ final class AuditMapper extends DataMapperAbstract
/** /**
* Columns. * Columns.
* *
* @var array<string, array<string, string|bool>> * @var array<string, array<string, bool|string>>
* @since 1.0.0 * @since 1.0.0
*/ */
static protected $columns = [ static protected $columns = [