| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | protected function configureOptionsNode(ArrayNodeDefinition $optionsNode): void |
||
| 58 | { |
||
| 59 | $optionsNode |
||
| 60 | ->children() |
||
| 61 | ->arrayNode('custom') |
||
| 62 | ->prototype('array') |
||
| 63 | ->children() |
||
| 64 | ->booleanNode('remove_existing')->defaultTrue()->end() |
||
| 65 | ->arrayNode('translations') |
||
| 66 | ->prototype('array') |
||
| 67 | ->children() |
||
| 68 | ->scalarNode('name')->defaultNull()->end() |
||
| 69 | ->end() |
||
| 70 | ->end() |
||
| 71 | ->end() |
||
| 72 | ->end() |
||
| 73 | ->end() |
||
| 74 | ->end() |
||
| 75 | ->end() |
||
| 76 | ; |
||
| 77 | } |
||
| 78 | } |
||
| 79 |