Skip to content

Commit

Permalink
Merge pull request #7 from finanzcheck/hotfix-dumper
Browse files Browse the repository at this point in the history
Fix FixturesLoadCommand
  • Loading branch information
mhabibi authored Sep 6, 2022
2 parents 329f8b0 + c27f4be commit d9817c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/FixturesLoadCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ protected function loadFixtures(InputInterface $input, OutputInterface $output,
return;
}

$nb = $loader->load($datas, $connectionName);
$nb = $loader->load($connectionName, $datas);

$output->writeln(sprintf('<comment>%s</comment> %s fixtures file%s loaded.', $nb, strtoupper($type), $nb > 1 ? 's' : ''));

Expand Down

0 comments on commit d9817c9

Please sign in to comment.