Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | trait UiTrait |
||
25 | { |
||
26 | /** @ORM\Column(nullable=true) */ |
||
27 | public ?string $uiComponent; |
||
28 | |||
29 | /** @ORM\Column(type="json", nullable=true) */ |
||
30 | public ?array $uiClassNames; |
||
31 | |||
32 | /** |
||
33 | * @ORM\ManyToMany(targetEntity="Silverback\ApiComponentBundle\Entity\Core\ComponentGroup") |
||
34 | * |
||
35 | * @var Collection|ComponentGroup[] |
||
36 | */ |
||
37 | public Collection $componentGroups; |
||
38 | |||
39 | private function initComponentGroups(): void |
||
44 |