| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 63 | public function providePathsWithValue(): array |
||
| 64 | { |
||
| 65 | return [ |
||
| 66 | [[], null], |
||
| 67 | [['boo'], null], |
||
| 68 | [['foo', 'nop'], null], |
||
| 69 | [['another', 'one', 'nop'], null], |
||
| 70 | [['foo'], [ |
||
| 71 | 'bar' => [ |
||
| 72 | 'baz' => 'Hello world!', |
||
| 73 | ], |
||
| 74 | ]], |
||
| 75 | [['foo', 'bar'], [ |
||
| 76 | 'baz' => 'Hello world!', |
||
| 77 | ]], |
||
| 78 | [['foo', 'bar', 'baz'], 'Hello world!'], |
||
| 79 | [['something'], []], |
||
| 80 | ]; |
||
| 81 | } |
||
| 82 | } |
||
| 83 |