1 | <?php |
||
24 | final class ExcludeSpecificationsExtension implements Extension |
||
25 | { |
||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getConfigKey(): string |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function initialize(ExtensionManager $extensionManager): void |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function configure(ArrayNodeDefinition $builder): void |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function load(ContainerBuilder $container, array $config): void |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function process(ContainerBuilder $container): void |
||
78 | |||
79 | /** |
||
80 | * @param array $skippedPaths |
||
81 | * @param string $basePath |
||
82 | * |
||
83 | * @return array |
||
84 | */ |
||
85 | private function getAbsoluteSkippedPaths(array $skippedPaths, string $basePath): array |
||
91 | } |
||
92 |