Test Setup Failed
Push — master ( 0a7a66...5f7a13 )
by Vragov
03:02
created

getConfigTreeBuilder()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 24
Code Lines 19

Duplication

Lines 24
Ratio 100 %

Importance

Changes 0
Metric Value
dl 24
loc 24
rs 8.9713
c 0
b 0
f 0
cc 1
eloc 19
nc 1
nop 0
1
<?php
2
namespace OmnideskBundle\Configuration\Staff;
3
4
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
5
use Symfony\Component\Config\Definition\ConfigurationInterface;
6
7
/**
8
 * Class EditStaffRequestConfiguration
9
 * @package OmnideskBundle\Configuration\Staff
10
 */
11 View Code Duplication
class EditStaffRequestConfiguration implements ConfigurationInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
12
{
13
    /**
14
     * @return TreeBuilder
15
     */
16
    public function getConfigTreeBuilder()
17
    {
18
        $treeBuilder = new TreeBuilder();
19
20
        $rootNode = $treeBuilder->root('params');
21
22
        $rootNode
23
            ->children()
24
                ->integerNode('staff_id')
25
                    ->isRequired()
26
                ->end()
27
                ->scalarNode('staff_email')
28
                    ->defaultNull()
29
                ->end()
30
                ->scalarNode('staff_full_name')
31
                    ->defaultNull()
32
                ->end()
33
                ->scalarNode('staff_signature')
34
                    ->defaultNull()
35
                ->end()
36
            ->end();
37
38
        return $treeBuilder;
39
    }
40
}
41