1 | <?php |
||
17 | class SkipTestsExtension implements Extension |
||
18 | { |
||
19 | const CONFIG_KEY = 'skiptests'; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function getConfigKey() |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function process(ContainerBuilder $container) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function initialize(ExtensionManager $extensionManager) |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function configure(ArrayNodeDefinition $builder) |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function load(ContainerBuilder $container, array $config) |
||
79 | |||
80 | /** |
||
81 | * @return \Closure |
||
82 | */ |
||
83 | private function getSkipTagsInitializer() |
||
90 | } |
||
91 |