Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
29 | class ComponentLocation |
||
30 | { |
||
31 | use IdTrait; |
||
32 | use TimestampedTrait; |
||
33 | |||
34 | public ComponentGroup $componentGroup; |
||
35 | |||
36 | /** |
||
37 | * @ApiProperty(writable=false) |
||
38 | */ |
||
39 | public AbstractComponent $component; |
||
40 | |||
41 | public ?int $sort = 0; |
||
42 | |||
43 | public function __construct() |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return Collection|AbstractComponent[]|null |
||
50 | */ |
||
51 | public function getSortCollection(): ?Collection |
||
56 |