| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | abstract class AbstractOverrideConfigAction implements EventSubscriberActionInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | 1 | public static function getSubscribedEvents(): array |
|
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 31 | 3 | public function process(): void |
|
| 38 | } |
||
| 39 | 3 | } |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | abstract protected function getOverrides(): array; |
||
| 45 | } |
||
| 46 |