Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
26 | trait UiTrait |
||
27 | { |
||
28 | /** @ORM\Column(nullable=true) */ |
||
29 | public ?string $uiComponent = null; |
||
30 | |||
31 | /** @ORM\Column(type="json", nullable=true) */ |
||
32 | public ?array $uiClassNames = null; |
||
33 | |||
34 | /** |
||
35 | * @ORM\ManyToMany(targetEntity="ComponentCollection") |
||
36 | * |
||
37 | * @var Collection|ComponentCollection[] |
||
38 | */ |
||
39 | public Collection $componentCollections; |
||
40 | |||
41 | 14 | private function initComponentCollections(): void |
|
46 |