| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | 4 | public static function lookupDecimal($int) |
|
| 49 | { |
||
| 50 | 4 | $entity = '&#' . $int . ';'; |
|
| 51 | // UNTESTED: This may fail on some planes. Couldn't find full documentation |
||
| 52 | // on the value of the mask array. |
||
| 53 | 4 | return mb_decode_numericentity($entity, static::$numeric_mask, 'utf-8'); |
|
| 54 | } |
||
| 55 | |||
| 64 |