php cs and stan fixes

This commit is contained in:
Dennis Eichhorn 2020-03-02 22:49:01 +01:00
parent 50ba0899f2
commit 0ce23630ff

View File

@ -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;