| Conditions | 4 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public static function decode($string, $asArray) |
||
| 19 | { |
||
| 20 | if (version_compare(PHP_VERSION, '5.4.0', '>=') && !(defined('JSON_C_VERSION') && PHP_INT_SIZE > 4)) { |
||
| 21 | return json_decode($string, $asArray, 512, JSON_BIGINT_AS_STRING); |
||
| 22 | } |
||
| 23 | |||
| 24 | return json_decode($string, $asArray); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |