| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | abstract class AbstractOverrideTwigConfigAction implements CompilerPassActionInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | const TWIG_CONFIG_PARAMETER_NAME = 'twig.config'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | 4 | public function process(ContainerBuilder $container): void |
|
| 36 | 3 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @return array |
||
| 40 | */ |
||
| 41 | abstract protected function getOverrides(): array; |
||
| 42 | } |
||
| 43 |