| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function chrUtf8DataProvider() |
||
| 39 | { |
||
| 40 | return [ |
||
| 41 | 'alphabet' => [ |
||
| 42 | 'input' => 0x0061, |
||
| 43 | 'expected' => 'a', |
||
| 44 | ], |
||
| 45 | 'numeric' => [ |
||
| 46 | 'input' => 0x0030, |
||
| 47 | 'expected' => '0', |
||
| 48 | ], |
||
| 49 | 'between 128 and 256' => [ |
||
| 50 | 'input' => 0x00E9, |
||
| 51 | 'expected' => 'é', |
||
| 52 | ], |
||
| 53 | 'emoji' => [ |
||
| 54 | 'input' => 0x231A, |
||
| 55 | 'expected' => '⌚', |
||
| 56 | ], |
||
| 60 |