Skip to content

Commit 8fb83be

Browse files
author
Andrey Helldar
authored
Fixed: Undefined variable: value
1 parent f599229 commit 8fb83be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Concerns/HasCases.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function convertKeysCase(array &$array): void
3131

3232
$result = [];
3333

34-
foreach ($array as $key => $item) {
34+
foreach ($array as $key => $value) {
3535
$key = $this->convertKeyCase($key);
3636

3737
$result[$key] = $value;

0 commit comments

Comments
 (0)