Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function addOptionsNode(): ArrayNodeDefinition |
||
33 | { |
||
34 | $treeBuilder = new TreeBuilder('options'); |
||
35 | |||
36 | $node = $treeBuilder->getRootNode() |
||
37 | ->info( |
||
38 | "These are the options passed as first argument to PantherTestCaseTrait::createPantherClient client constructor." |
||
39 | ) |
||
40 | ->ignoreExtraKeys() |
||
41 | ->scalarPrototype() |
||
42 | ->end() |
||
43 | ; |
||
44 | |||
45 | return $node; |
||
46 | } |
||
48 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.