Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function providerCanReadVerySmallFile() |
||
18 | { |
||
19 | $padding = str_repeat('a', 2048); |
||
20 | |||
21 | return [ |
||
22 | [true, ' <html> ' . $padding . ' </html> '], |
||
23 | [true, ' <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html>' . $padding . '</html>'], |
||
24 | [true, '<html></html>'], |
||
25 | [false, ''], |
||
26 | ]; |
||
47 |