mirror of
https://github.com/Karaka-Management/oms-RiskManagement.git
synced 2026-01-28 19:28:41 +00:00
fix phpstan
This commit is contained in:
parent
475cd9f779
commit
2841a28ec1
|
|
@ -32,6 +32,12 @@ class Category
|
||||||
*/
|
*/
|
||||||
protected int $id = 0;
|
protected int $id = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Title.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private $title = '';
|
private $title = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -41,6 +47,7 @@ class Category
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private string $description = '';
|
private string $description = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Description.
|
* Description.
|
||||||
*
|
*
|
||||||
|
|
@ -49,6 +56,12 @@ class Category
|
||||||
*/
|
*/
|
||||||
private string $descriptionRaw = '';
|
private string $descriptionRaw = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parent category.
|
||||||
|
*
|
||||||
|
* @var null|int|self
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
private $parent = null;
|
private $parent = null;
|
||||||
|
|
||||||
private $responsible = null;
|
private $responsible = null;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user