Completed
Push — issue#804 ( c079af...030c84 )
by Guilherme
04:41
created

Configuration::getConfigTreeBuilder()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 23
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 15
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 15
nc 1
nop 0
dl 0
loc 23
ccs 15
cts 15
cp 1
crap 1
rs 9.7666
c 0
b 0
f 0
1
<?php
2
3
namespace PROCERGS\LoginCidadao\CpfVerificationBundle\DependencyInjection;
4
5
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
6
use Symfony\Component\Config\Definition\ConfigurationInterface;
7
8
/**
9
 * This is the class that validates and merges configuration from your app/config files
10
 *
11
 * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}
12
 */
13
class Configuration implements ConfigurationInterface
14
{
15
    /**
16
     * {@inheritdoc}
17
     */
18 5
    public function getConfigTreeBuilder()
19
    {
20 5
        $treeBuilder = new TreeBuilder();
21 5
        $rootNode = $treeBuilder->root('procergs_cpf_verification');
22
23
        $rootNode
24 5
            ->children()
25 5
                ->scalarNode('base_uri')
26 5
                    ->isRequired()
27 5
                ->end()
28 5
                ->scalarNode('list_challenges_path')
29 5
                    ->defaultNull()
30 5
                ->end()
31 5
                ->scalarNode('challenge_path')
32 5
                    ->defaultNull()
33 5
                ->end()
34 5
            ->end();
35
36
        // Here you should define the parameters that are allowed to
37
        // configure your bundle. See the documentation linked above for
38
        // more information on that topic.
39
40 5
        return $treeBuilder;
41
    }
42
}
43