Passed
Pull Request — master (#1)
by ANTHONIUS
03:02
created

Extension::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
4
namespace Doyo\Behat\CodeCoverage;
5
6
use Behat\Testwork\ServiceContainer\Extension as ExtensionInterface;
7
use Behat\Testwork\ServiceContainer\ExtensionManager;
8
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
9
use Symfony\Component\DependencyInjection\ContainerBuilder;
10
11
class Extension implements ExtensionInterface
12
{
13
    public function process(ContainerBuilder $container)
14
    {
15
        // TODO: Implement process() method.
16
    }
17
18
    public function getConfigKey()
19
    {
20
        // TODO: Implement getConfigKey() method.
21
    }
22
23
    public function initialize(ExtensionManager $extensionManager)
24
    {
25
        // TODO: Implement initialize() method.
26
    }
27
28
    public function configure(ArrayNodeDefinition $builder)
29
    {
30
        // TODO: Implement configure() method.
31
    }
32
33
    public function load(ContainerBuilder $container, array $config)
34
    {
35
        // TODO: Implement load() method.
36
    }
37
}
38