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