Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 71.43% |
Changes | 0 |
1 | <?php |
||
12 | abstract class AbstractFeature extends AbstractComponent |
||
13 | { |
||
14 | 5 | public function __construct() |
|
15 | { |
||
16 | 5 | parent::__construct(); |
|
17 | 5 | $this->addValidComponent(AbstractFeatureItem::class); |
|
18 | 5 | $this->addComponentGroup(new ComponentGroup()); |
|
19 | 5 | } |
|
20 | |||
21 | public function onDeleteCascade(): bool |
||
24 | } |
||
25 | } |
||
26 |