Skip to content

Commit cf493ad

Browse files
committed
(fix) phpcs errors
1 parent ebee3f4 commit cf493ad

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Http/QuoPayload.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ private function getVariableType(): string
210210

211211
if ($type === 'array') {
212212
$type .= '<' . implode(', ', array_map(function ($item) {
213-
if (function_exists('get_debug_type')) {
214-
return get_debug_type($item);
215-
}
213+
if (function_exists('get_debug_type')) {
214+
return get_debug_type($item);
215+
}
216216

217217
$itemType = is_object($item) ? get_class($item) : gettype($item);
218218

@@ -223,7 +223,7 @@ private function getVariableType(): string
223223
];
224224

225225
return $map[$itemType] ?? $itemType;
226-
}, $this->variable)) . '>';
226+
}, $this->variable)) . '>';
227227
}
228228

229229
return $type;

0 commit comments

Comments
 (0)