Skip to content

Commit

Permalink
Rename that var!
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksleight committed Nov 6, 2023
1 parent 45c3f9f commit a821e03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Modifiers/CoreModifiers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2813,8 +2813,8 @@ public function wrap($value, $params)
}

if (is_array($value)) {
return array_map(function ($value) use ($params) {
return $this->wrap($value, $params);
return array_map(function ($item) use ($params) {
return $this->wrap($item, $params);
}, $value);
}

Expand Down

0 comments on commit a821e03

Please sign in to comment.