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