| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 21 | public function providerValues(): iterable | ||
| 22 |     { | ||
| 23 | return [ | ||
| 24 | ['[email protected]', '[email protected]', true], | ||
| 25 | ['josé@example.com', 'josé@example.com', false], | ||
| 26 | ['[email protected]', '[email protected]', false], | ||
| 27 | ['john@ example.com', 'john@ example.com', false], | ||
| 28 | ['root@localhost', 'root@localhost', false], | ||
| 29 | ['', null, true], | ||
| 30 | ['foo', 'foo', false], | ||
| 31 | [null, null, true], | ||
| 32 | ]; | ||
| 35 |