Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | class FeatureTextList extends AbstractFeature |
||
18 | { |
||
19 | /** |
||
20 | * @Groups({"component", "content"}) |
||
21 | * @var null|string |
||
22 | */ |
||
23 | protected $title; |
||
24 | |||
25 | /** |
||
26 | * @return null|string |
||
27 | */ |
||
28 | 1 | public function getTitle(): ?string |
|
29 | { |
||
30 | 1 | return $this->title; |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param null|string $title |
||
35 | */ |
||
36 | 1 | public function setTitle(?string $title): void |
|
39 | 1 | } |
|
40 | } |
||
41 |