Configuration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 28
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
B getConfigTreeBuilder() 0 25 1
1
<?php
2
3
namespace Loevgaard\PakkelabelsBundle\DependencyInjection;
4
5
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
6
use Symfony\Component\Config\Definition\ConfigurationInterface;
7
8
class Configuration implements ConfigurationInterface
9
{
10
    public function getConfigTreeBuilder()
11
    {
12
        $treeBuilder = new TreeBuilder();
13
        $rootNode = $treeBuilder->root('loevgaard_pakkelabels');
14
15
        $rootNode
16
            ->children()
17
                ->scalarNode('api_username')
18
                    ->isRequired()
19
                    ->cannotBeEmpty()
20
                ->end()
21
                ->scalarNode('api_password')
22
                    ->isRequired()
23
                    ->cannotBeEmpty()
24
                ->end()
25
                ->scalarNode('label_dir')
26
                    ->isRequired()
27
                    ->cannotBeEmpty()
28
                    ->info('The directory where label files are saved')
29
                ->end()
30
            ->end()
31
        ;
32
33
        return $treeBuilder;
34
    }
35
}
36