PerformanceExtension::getConfigKey()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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