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

Configuration   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 16
dl 0
loc 28
ccs 15
cts 15
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfigTreeBuilder() 0 23 1
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