| Conditions | 6 |
| Paths | 4 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 6.0493 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 19 | public static function normalize($result) |
|
| 18 | { |
||
| 19 | 19 | if (!\is_array($result)) { |
|
| 20 | return $result; |
||
| 21 | } |
||
| 22 | |||
| 23 | 19 | $firstKey = \array_key_first($result); |
|
| 24 | |||
| 25 | 19 | if (null !== $firstKey && \is_object($result[$firstKey]) && $result === [$firstKey => $result[$firstKey]]) { |
|
| 26 | 10 | return $result[$firstKey]; |
|
| 27 | } |
||
| 28 | |||
| 29 | 9 | if (\count($result) > 1) { |
|
| 30 | 5 | $result = [\array_merge(...$result)]; |
|
| 31 | } |
||
| 32 | |||
| 33 | 9 | return $result[$firstKey]; |
|
| 34 | } |
||
| 35 | } |
||
| 36 |