AppBundle::getContainerExtension()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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