Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
31 | 16 | protected function transformContentToArray($content = ''): array |
|
32 | { |
||
33 | 16 | if (is_array($content)) { |
|
34 | 3 | return $content; |
|
35 | } |
||
36 | try { |
||
37 | 13 | return json_decode($content, true, 512, JSON_THROW_ON_ERROR); |
|
38 | 11 | } catch (Throwable $exception) { |
|
39 | 11 | return ['data' => $content]; |
|
40 | } |
||
73 |