Extension::configure()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
3
namespace Behatch\Notifier;
4
5
use Behat\Testwork\ServiceContainer\ExtensionManager;
6
use Behat\Testwork\Hook\ServiceContainer\HookExtension;
7
use Symfony\Component\DependencyInjection\ContainerBuilder;
8
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
9
10
class Extension extends HookExtension
11
{
12
    public function getConfigKey()
13
    {
14
        return 'behatch_notifiers';
15
    }
16
17
    public function initialize(ExtensionManager $extensionManager)
18
    {
19
    }
20
21
    public function process(ContainerBuilder $container)
22
    {
23
    }
24
25
    public function load(ContainerBuilder $container, array $config)
26
    {
27
    }
28
29
    public function configure(ArrayNodeDefinition $builder)
30
    {
31
    }
32
33
    public function getCompilerPasses()
34
    {
35
        return [];
36
    }
37
}
38