| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class Editor extends ArrayPopulatedObject |
||
| 13 | { |
||
| 14 | protected string $id; |
||
| 15 | protected string $name; |
||
| 16 | protected ?string $preferredLanguage = null; |
||
| 17 | |||
| 18 | public function getId(): string |
||
| 19 | { |
||
| 20 | return $this->id; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getName(): string |
||
| 24 | { |
||
| 25 | return $this->name; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getPreferredLanguage(): ?string |
||
| 31 | } |
||
| 32 | } |
||
| 33 |