VreshTwilioBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 5 1
1
<?php
2
namespace Vresh\TwilioBundle;
3
4
use Symfony\Component\DependencyInjection\ContainerBuilder;
5
use Symfony\Component\HttpKernel\Bundle\Bundle;
6
7
/**
8
 * This file is part of the VreshTwilioBundle.
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 *
13
 * @author Fridolin Koch <[email protected]>
14
 */
15
class VreshTwilioBundle extends Bundle
16
{
17
    public function build(ContainerBuilder $container)
18
    {
19
        parent::build($container);
20
21
    }
22
}