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