StingerSoftMediaParsingBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 7
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Stinger Media Parser package.
5
 *
6
 * (c) Oliver Kotte <[email protected]>
7
 * (c) Florian Meyer <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace StingerSoft\MediaParsingBundle;
14
15
use Symfony\Component\HttpKernel\Bundle\Bundle;
16
use Symfony\Component\DependencyInjection\ContainerBuilder;
17
use StingerSoft\MediaParsingBundle\Parser\ParserCompilerPass;
18
19
class StingerSoftMediaParsingBundle extends Bundle {
20
	
21
	public function build(ContainerBuilder $container){
22
		parent::build($container);
23
		$container->addCompilerPass(new ParserCompilerPass());
24
	}
25
}
26