Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function configure(ArrayNodeDefinition $builder) |
||
41 | { |
||
42 | $builder |
||
43 | ->children() |
||
44 | ->arrayNode('options') |
||
45 | ->useAttributeAsKey('key') |
||
46 | ->prototype('variable')->end() |
||
47 | ->info( |
||
48 | "These are the options passed as first argument to PantherTestcaseTrait::createPantherClient client constructor." |
||
49 | ) |
||
50 | ->end() |
||
51 | ->end() |
||
52 | ; |
||
53 | } |
||
54 | |||
74 |