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