Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 71.43% |
Changes | 0 |
1 | <?php |
||
25 | abstract class AbstractComponent implements ComponentInterface |
||
26 | { |
||
27 | use IdTrait; |
||
28 | use UiTrait; |
||
29 | use ComponentGroupsTrait; |
||
30 | |||
31 | /** |
||
32 | * @var Collection|ComponentLocation[] |
||
33 | */ |
||
34 | public Collection $componentLocations; |
||
35 | |||
36 | 9 | public function __construct() |
|
41 | 9 | } |
|
42 | |||
43 | public function __clone() |
||
48 |