mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-02-13 15:58:42 +00:00
php cs and stan fixes
This commit is contained in:
parent
50ba0899f2
commit
0ce23630ff
|
|
@ -34,16 +34,40 @@ class Comment
|
||||||
|
|
||||||
private $createdBy = 0;
|
private $createdBy = 0;
|
||||||
|
|
||||||
private $createdAt = null;
|
/**
|
||||||
|
* Created at
|
||||||
|
*
|
||||||
|
* @var \DateTime
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
private \DateTime $createdAt;
|
||||||
|
|
||||||
private $list = null;
|
private $list = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Title
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private $title = '';
|
private $title = '';
|
||||||
|
|
||||||
private int $status = 0;
|
private int $status = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Content
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private $content = '';
|
private $content = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Content raw
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private $contentRaw = '';
|
private $contentRaw = '';
|
||||||
|
|
||||||
private $ref = null;
|
private $ref = null;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user