StingerSoftMediaParsingBundle::build()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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