| 1 | <?php |
||
| 27 | final class ConsoleSource implements Source |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function name(): string |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function load(array $configs, ContainerBuilder $container) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function getNodeDefinition(ArrayNodeDefinition $node) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | */ |
||
| 59 | public function prepend(ContainerBuilder $container, array $config): array |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @return bool |
||
| 66 | */ |
||
| 67 | private function isEnabled(): bool |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @return CompilerPassInterface[] |
||
| 74 | */ |
||
| 75 | public function getCompilerPasses(): array |
||
| 80 | } |
||
| 81 |