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