| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | #[ORM\Entity(repositoryClass: XApiExtensionsRepository::class)] |
||
| 13 | class XApiExtensions |
||
| 14 | { |
||
| 15 | #[ORM\Id] |
||
| 16 | #[ORM\GeneratedValue] |
||
| 17 | #[ORM\Column] |
||
| 18 | private ?int $identifier = null; |
||
| 19 | |||
| 20 | #[ORM\Column] |
||
| 21 | private array $extensions = []; |
||
| 22 | |||
| 23 | public function getIdentifier(): ?int |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getExtensions(): array |
||
| 29 | { |
||
| 30 | return $this->extensions; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function setExtensions(array $extensions): static |
||
| 38 | } |
||
| 39 | } |
||
| 40 |