Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | protected function configureOptionsNode(ArrayNodeDefinition $optionsNode): void |
||
38 | { |
||
39 | $optionsNode |
||
40 | ->children() |
||
41 | ->arrayNode('custom') |
||
42 | ->arrayPrototype() |
||
43 | ->children() |
||
44 | ->booleanNode('remove_existing')->defaultTrue()->end() |
||
45 | ->arrayNode('translations') |
||
|
|||
46 | ->prototype('array') |
||
47 | ->children() |
||
48 | ->scalarNode('name')->defaultNull()->end() |
||
49 | ->end() |
||
50 | ->end() |
||
51 | ->end() |
||
52 | ->end() |
||
53 | ->end() |
||
54 | ->end() |
||
55 | ->end() |
||
56 | ; |
||
59 |