Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | trait DescriptionTrait |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var ?string |
||
10 | */ |
||
|
|||
11 | private $description; |
||
12 | |||
13 | /** |
||
14 | * @return null|string |
||
15 | */ |
||
16 | public function getDescription(): ?string |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @param null|string $description |
||
23 | * @return $this |
||
24 | */ |
||
25 | protected function setDescription(?string $description) |
||
32 |