AppBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getContainerExtension() 0 4 1
1
<?php
2
/**
3
 * Main bundle of the app
4
 *
5
 * PHP Version 5
6
 *
7
 * @category Symfony
8
 * @package  Chrl_Buktopuha
9
 * @author   Kirill Kholodilin <[email protected]>
10
 * @license  http://www.gnu.org/copyleft/gpl.html GNU General Public License
11
 * @link     https://take2.ru/
12
 */
13
namespace Chrl\AppBundle;
14
15
use Chrl\AppBundle\DependencyInjection\BuktopuhaExtension;
16
use Symfony\Component\HttpKernel\Bundle\Bundle;
17
18
/**
19
 * Bundle class
20
 *
21
 * @class    AppBundle
22
 * @category Symfony
23
 * @package  Chrl_Buktopuha
24
 * @author   Kirill Kholodilin <[email protected]>
25
 * @license  http://www.gnu.org/copyleft/gpl.html GNU General Public License
26
 * @link     https://take2.ru/
27
 */
28
class AppBundle extends Bundle
29
{
30
    public function getContainerExtension()
31
    {
32
        return new BuktopuhaExtension();
33
    }
34
}
35