Skip to content

Commit b7afdba

Browse files
Fix default value of no-bundles (#538)
1 parent 17c5199 commit b7afdba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/Command/Doctrine/DoctrineOrmLoadDataFixturesCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
137137
}
138138
}
139139

140-
$noBundles = $input->getParameterOption('--no-bundles') ?? true;
140+
$noBundles = $input->getOption('no-bundles') ?? true;
141141
if (!$noBundles) {
142142
@trigger_error(
143143
'The configuration parameter hautelook_alice.root_dirs should be used to specify the directories to include. If done or if you do not need to load bundle\'s fixtures, use the --no-bundles option',

0 commit comments

Comments
 (0)