Skip to content

Commit

Permalink
[FixturesBundle] fixed parser for array
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Zentjens committed Dec 22, 2017
1 parent 96674cb commit b2d9f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kunstmaan/FixturesBundle/Parser/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function parseArray($array, $providers, $fixtures = [], $additional = [])

foreach ($array as $key => $item) {
if (is_array($item)) {
$array[$key] = $this->parseArray($item, $providers, $fixtures);
$array[$key] = $this->parseArray($item, $providers, $fixtures, $additional);
} else {
$array[$key] = $this->parse($item, $providers, $fixtures, $additional);
}
Expand Down

0 comments on commit b2d9f94

Please sign in to comment.