Completed
Push — master ( 5fb806...0f3195 )
by Nicolas
21:50
created

LoadBalancerBundle::build()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace NBN\LoadBalancerBundle;
4
5
use Symfony\Component\HttpKernel\Bundle\Bundle;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
8
/**
9
 * @author Nicolas Bastien <[email protected]>
10
 */
11
class LoadBalancerBundle extends Bundle
12
{
13
    /**
14
     * {@inheritDoc}
15
     */
16
    public function build(ContainerBuilder $container)
17
    {
18
        parent::build($container);
19
    }
20
}
21