We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebee3f4 commit cf493adCopy full SHA for cf493ad
1 file changed
src/Http/QuoPayload.php
@@ -210,9 +210,9 @@ private function getVariableType(): string
210
211
if ($type === 'array') {
212
$type .= '<' . implode(', ', array_map(function ($item) {
213
- if (function_exists('get_debug_type')) {
214
- return get_debug_type($item);
215
- }
+ if (function_exists('get_debug_type')) {
+ return get_debug_type($item);
+ }
216
217
$itemType = is_object($item) ? get_class($item) : gettype($item);
218
@@ -223,7 +223,7 @@ private function getVariableType(): string
223
];
224
225
return $map[$itemType] ?? $itemType;
226
- }, $this->variable)) . '>';
+ }, $this->variable)) . '>';
227
}
228
229
return $type;
0 commit comments