mirror of
https://github.com/Karaka-Management/oms-Auditor.git
synced 2026-02-15 04:58:41 +00:00
Fix null typehint order
This commit is contained in:
parent
972563590d
commit
80d7724384
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -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 = [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user