| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function valueProvider( $stringlyTyped = true ) { |
||
| 30 | return [ |
||
| 31 | 'empty' => [ |
||
| 32 | [ 'ohi there', true, 'ohi there' ], |
||
| 33 | [ 4.2, false ], |
||
| 34 | [ [ 42 ], false ], |
||
| 35 | ], |
||
| 36 | 'values' => [ |
||
| 37 | [ 'foo', true, 'foo' ], |
||
| 38 | [ '1', true, '1' ], |
||
| 39 | [ 'yes', true, 'yes' ], |
||
| 40 | [ 'bar', false ], |
||
| 41 | [ true, false ], |
||
| 42 | [ 0.1, false ], |
||
| 43 | [ [], false ], |
||
| 44 | ], |
||
| 45 | ]; |
||
| 46 | } |
||
| 47 | |||
| 57 |