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

LoadBalancerBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 4 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