Skip to content

Commit 22f1fa2

Browse files
committed
chore: display of executed seeds has been modified
1 parent fc22959 commit 22f1fa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LionBundle/Commands/Lion/DB/DBSeedCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7474
}
7575

7676
foreach ($this->orderList($files) as $seedInterface) {
77+
$output->writeln($this->warningOutput("\t>> SEED: " . $seedInterface::class));
78+
7779
for ($i = 0; $i < $end; $i++) {
7880
$response = $seedInterface->run();
7981

80-
$output->writeln($this->warningOutput("\t>> SEED: " . $seedInterface::class));
81-
8282
if (isError($response)) {
8383
$output->writeln($this->errorOutput("\t>> SEED: {$response->message}"));
8484
} else {

0 commit comments

Comments
 (0)