Passed
Branch master (837534)
by Oguzhan
04:07 queued 33s
created

MusicInfoExtension   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 1 Features 1
Metric Value
wmc 1
c 3
b 1
f 1
lcom 0
cbo 2
dl 0
loc 10
ccs 0
cts 4
cp 0
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
    public function load(array $configs, ContainerBuilder $container)
10
    {
11
        $configuration = new Configuration;
12
13
        $config = $this->processConfiguration($configuration, $configs);
14
15
    }
16
}