Skip to content

Commit

Permalink
Fixed: Undefined variable: value
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar authored Jan 27, 2020
1 parent f599229 commit 8fb83be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/HasCases.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ protected function convertKeysCase(array &$array): void

$result = [];

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

$result[$key] = $value;
Expand Down

0 comments on commit 8fb83be

Please sign in to comment.