Skip to content

Commit

Permalink
[Core] Fix --no-progress-bar option not applied (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jul 16, 2021
1 parent b5f2f3a commit 2a28758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application/ApplicationFileProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function run(array $files, Configuration $configuration): void
*/
private function processFiles(array $files, Configuration $configuration): void
{
if ($configuration->shouldShowDiffs()) {
if ($configuration->shouldShowProgressBar()) {
$fileCount = count($files);
$this->symfonyStyle->progressStart($fileCount);
}
Expand Down

0 comments on commit 2a28758

Please sign in to comment.