Skip to content

Commit

Permalink
Merge pull request #1773 from deZinc/fix/fixtures-bundle
Browse files Browse the repository at this point in the history
[FixturesBundle] fixed parser for array
  • Loading branch information
sandergo90 authored Dec 22, 2017
2 parents 3497226 + b2d9f94 commit f500136
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 f500136

Please sign in to comment.