| Conditions | 5 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function dump($data) |
||
| 27 | { |
||
| 28 | if (is_array($data) && empty($data)) { |
||
| 29 | return ''; |
||
| 30 | } |
||
| 31 | |||
| 32 | $result = json_encode($data, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
||
| 33 | |||
| 34 | if ('{' === $result[0] && '}' === substr($result, -1)) { |
||
| 35 | $result = substr($result, 1, -1); |
||
| 36 | } |
||
| 37 | |||
| 38 | return $result; |
||
| 39 | } |
||
| 40 | } |
||
| 41 |