Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function varsProvider(){ |
||
10 | return [ |
||
11 | [ [], 'abcd', null ], |
||
12 | [ [ 'post'=> [ 'command' => 'jump'] ], 'dummy', null ], |
||
13 | [ [ 'post'=> [ 'command' => 'jump'] ], 'command', 'jump' ], |
||
14 | [ [ 'post'=> [ 'testArray' => ['key' => 'value'] ] ], 'testArray', ['key' => 'value'] ], |
||
15 | ]; |
||
16 | } |
||
17 | |||
27 |