mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-24 22:38: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 $createdAt = null;
|
||||
/**
|
||||
* Created at
|
||||
*
|
||||
* @var \DateTime
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private \DateTime $createdAt;
|
||||
|
||||
private $list = null;
|
||||
|
||||
/**
|
||||
* Title
|
||||
*
|
||||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $title = '';
|
||||
|
||||
private int $status = 0;
|
||||
|
||||
/**
|
||||
* Content
|
||||
*
|
||||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $content = '';
|
||||
|
||||
/**
|
||||
* Content raw
|
||||
*
|
||||
* @var string
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $contentRaw = '';
|
||||
|
||||
private $ref = null;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user