Skip to content

Commit 71d38a5

Browse files
committed
Write line after progress bars
1 parent af3704b commit 71d38a5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Command/CleanOrphanedCommand.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
4141
}
4242
}
4343
$groupsProgressBar->finish();
44+
$output->writeln('');
4445

4546
$componentRepository = $this->registry->getRepository(AbstractComponent::class);
4647
$components = $componentRepository->findAll();
@@ -53,6 +54,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
5354
}
5455
}
5556
$componentsProgressBar->finish();
57+
$output->writeln('');
5658

5759
$output->writeln(\sprintf('Removed <comment>%d</comment> orphaned components (excluding cascades)', $count));
5860
return 0;

0 commit comments

Comments
 (0)