Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | class FeatureColumnsItem extends AbstractFeatureItem |
||
18 | { |
||
19 | /** |
||
20 | * @Groups({"component", "content"}) |
||
21 | * @var null|string |
||
22 | */ |
||
23 | protected $description; |
||
24 | |||
25 | /** |
||
26 | * @return null|string |
||
27 | */ |
||
28 | 1 | public function getDescription(): ?string |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param null|string $description |
||
35 | */ |
||
36 | 1 | public function setDescription(?string $description): void |
|
41 |