| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | trait HasSettingsSectionDataTrait |
||
| 6 | { |
||
| 7 | public string $id; |
||
| 8 | |||
| 9 | public string $title; |
||
| 10 | |||
| 11 | public string $page; |
||
| 12 | |||
| 13 | public ?string $description = null; |
||
| 14 | |||
| 15 | public function getId(): string |
||
| 16 | { |
||
| 17 | return $this->id; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getTitle(): string |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getPage(): string |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getDescription(): string |
||
| 33 | } |
||
| 34 | } |
||
| 35 |