Completed
Push — master ( b2cd26...6b1baa )
by ANTHONIUS
13s queued 11s
created

Extension   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 24
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A process() 0 2 1
A configure() 0 2 1
A getConfigKey() 0 2 1
A load() 0 2 1
A initialize() 0 2 1
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