mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-02-06 20:08:41 +00:00
fix after change to php 7.4
This commit is contained in:
parent
fb760e2d70
commit
f26b0298de
|
|
@ -30,7 +30,7 @@ class Issue
|
|||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $id = 0;
|
||||
private int $id = 0;
|
||||
|
||||
/**
|
||||
* Name.
|
||||
|
|
@ -38,7 +38,7 @@ class Issue
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $name = '';
|
||||
private string $name = '';
|
||||
|
||||
/**
|
||||
* Description.
|
||||
|
|
@ -46,7 +46,7 @@ class Issue
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $description = '';
|
||||
private string $description = '';
|
||||
|
||||
/**
|
||||
* Created.
|
||||
|
|
@ -54,7 +54,7 @@ class Issue
|
|||
* @var null|\DateTime
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $created = null;
|
||||
private ?\DateTime $created = null;
|
||||
|
||||
/**
|
||||
* Creator.
|
||||
|
|
@ -62,7 +62,7 @@ class Issue
|
|||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $creator = null;
|
||||
private int $creator = null;
|
||||
|
||||
private static $instances = [];
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class Message
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $name = '';
|
||||
private string $name = '';
|
||||
|
||||
/**
|
||||
* Description.
|
||||
|
|
@ -39,7 +39,7 @@ class Message
|
|||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $description = '';
|
||||
private string $description = '';
|
||||
|
||||
/**
|
||||
* Created.
|
||||
|
|
@ -47,7 +47,7 @@ class Message
|
|||
* @var null|\DateTime
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $created = null;
|
||||
private ?\DateTime $created = null;
|
||||
|
||||
/**
|
||||
* Creator.
|
||||
|
|
@ -55,7 +55,7 @@ class Message
|
|||
* @var int
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $creator = null;
|
||||
private int $creator = null;
|
||||
|
||||
private static $instances = [];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user