We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50a253b commit 33603bbCopy full SHA for 33603bb
setup/src/Magento/Setup/Fixtures/Fixture.php
@@ -58,7 +58,10 @@ public function printInfo(OutputInterface $output)
58
$generationCount = is_array($configValue) === true
59
? count($configValue[array_keys($configValue)[0]])
60
: $configValue;
61
- $output->writeln('<info> |- ' . $label . ': ' . $generationCount .'</info>');
+
62
+ if (!empty($generationCount)) {
63
+ $output->writeln('<info> |- ' . $label . ': ' . $generationCount .'</info>');
64
+ }
65
}
66
67
0 commit comments