Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function valueProvider( $stringlyTyped = true ) { |
||
19 | return [ |
||
20 | 'empty' => [ |
||
21 | [ 'ohi there', true, 'ohi there' ], |
||
22 | [ 4.2, false ], |
||
23 | [ [ 42 ], false ], |
||
24 | ], |
||
25 | 'values' => [ |
||
26 | [ 'foo', true, 'foo' ], |
||
27 | [ '1', true, '1' ], |
||
28 | [ 'yes', true, 'yes' ], |
||
29 | [ 'bar', false ], |
||
30 | [ true, false ], |
||
31 | [ 0.1, false ], |
||
32 | [ [], false ], |
||
33 | ], |
||
34 | ]; |
||
35 | } |
||
36 | |||
46 |