Completed
Push — master ( c7af1e...46d491 )
by Konstantinos
06:03 queued 02:12
created

ConfigBundle::getContainerExtension()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 * This file defines a symfony bundle for bzion configuration
4
 *
5
 * @license    https://github.com/allejo/bzion/blob/master/LICENSE.md GNU General Public License Version 3
6
 */
7
8
namespace BZIon\Config;
9
10
use Symfony\Component\HttpKernel\Bundle\Bundle;
11
12
/**
13
 * Symfony bundle for bzion configuration
14
 *
15
 * Allows parsing and validating a configuration file with a complex structure
16
 */
17
class ConfigBundle extends Bundle
18
{
19
    /**
20
     * {@inheritdoc}
21
     */
22 1
    public function getContainerExtension()
23
    {
24 1
        return new ConfigExtension();
25
    }
26
}
27