Total Complexity | 1 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
30 | class ComponentGroup |
||
31 | { |
||
32 | use IdTrait; |
||
33 | use TimestampedTrait; |
||
34 | |||
35 | public string $reference; |
||
36 | |||
37 | /** |
||
38 | * @var Collection|Layout[] |
||
39 | */ |
||
40 | public $layouts; |
||
41 | |||
42 | /** |
||
43 | * @var Collection|PageTemplate[] |
||
44 | */ |
||
45 | public Collection $pageTemplates; |
||
46 | |||
47 | /** |
||
48 | * @ApiProperty(writable=false) |
||
49 | * |
||
50 | * @var Collection|AbstractComponent[] |
||
51 | */ |
||
52 | public Collection $components; |
||
53 | |||
54 | /** |
||
55 | * @var Collection|ComponentLocation[] |
||
56 | */ |
||
57 | public Collection $componentLocations; |
||
58 | |||
59 | public function __construct() |
||
65 |