From 2841a28ec1e722f875bdb4d97abbaa58828e8aaa Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 3 Mar 2020 16:26:48 +0100 Subject: [PATCH] fix phpstan --- Models/Category.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Models/Category.php b/Models/Category.php index 4d3210c..e106d51 100644 --- a/Models/Category.php +++ b/Models/Category.php @@ -32,6 +32,12 @@ class Category */ protected int $id = 0; + /** + * Title. + * + * @var string + * @since 1.0.0 + */ private $title = ''; /** @@ -41,6 +47,7 @@ class Category * @since 1.0.0 */ private string $description = ''; + /** * Description. * @@ -49,6 +56,12 @@ class Category */ private string $descriptionRaw = ''; + /** + * Parent category. + * + * @var null|int|self + * @since 1.0.0 + */ private $parent = null; private $responsible = null;