Passed
Branch develop (a933a7)
by Oguzhan
02:58
created

MusicInfoExtension   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 2
dl 0
loc 10
ccs 4
cts 4
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A load() 0 7 1
1
<?php
2
namespace Pbxg33k\MusicInfo\DependencyInjection;
3
4
use Symfony\Component\DependencyInjection\ContainerBuilder;
5
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
6
7
class MusicInfoExtension extends Extension
8
{
9 1
    public function load(array $configs, ContainerBuilder $container)
10
    {
11 1
        $configuration = new Configuration;
12
13 1
        $config = $this->processConfiguration($configuration, $configs);
14
15
    }
16
}