PerformanceExtension   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 0
dl 0
loc 38
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getConfigKey() 0 4 1
A initialize() 0 3 1
A configure() 0 3 1
A load() 0 3 1
A process() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the PerformanceExtension package.
7
 *
8
 * (c) Kamil Kokot <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace FriendsOfBehat\PerformanceExtension\ServiceContainer;
15
16
use Behat\Testwork\ServiceContainer\Extension;
17
use Behat\Testwork\ServiceContainer\ExtensionManager;
18
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
19
use Symfony\Component\DependencyInjection\ContainerBuilder;
20
21
final class PerformanceExtension implements Extension
22
{
23
    /**
24
     * {@inheritdoc}
25
     */
26
    public function getConfigKey(): string
27
    {
28
        return 'fob_performance';
29
    }
30
31
    /**
32
     * {@inheritdoc}
33
     */
34
    public function initialize(ExtensionManager $extensionManager)
35
    {
36
    }
37
38
    /**
39
     * {@inheritdoc}
40
     */
41
    public function configure(ArrayNodeDefinition $builder)
42
    {
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48
    public function load(ContainerBuilder $container, array $config)
49
    {
50
    }
51
52
    /**
53
     * {@inheritdoc}
54
     */
55
    public function process(ContainerBuilder $container)
56
    {
57
    }
58
}
59