Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 3 | protected function processMappers(NodeBuilder $builder) |
|
37 | { |
||
38 | 3 | $builder->arrayNode('mappers') |
|
39 | 3 | ->defaultValue(['default' => [ |
|
40 | 'handlers' => [ |
||
41 | 'attribute', |
||
42 | 'relationship', |
||
43 | 'link' |
||
44 | ] |
||
45 | ]]) |
||
46 | 3 | ->prototype('array') |
|
47 | 3 | ->children() |
|
48 | 3 | ->arrayNode('handlers') |
|
49 | 3 | ->prototype('scalar'); |
|
50 | 3 | } |
|
51 | |||
94 | } |