Skip to content

Commit

Permalink
chore: phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Sep 8, 2023
1 parent 63db632 commit 4c33937
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$row[$header[$key] ?? $key] = $cell;
$empty = $empty && (null === $cell);
}
if($empty) {
if ($empty) {
$progressBar->advance();
continue;
}
Expand Down Expand Up @@ -143,7 +143,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
}
$progressBar->finish();
$this->io->newLine(2);
$this->io->text(sprintf('%d lines have been imported', $counter));
$this->io->text(\sprintf('%d lines have been imported', $counter));

if ($this->dryRun && \count($ouuids) > 0) {
$this->io->newLine(2);
Expand Down

0 comments on commit 4c33937

Please sign in to comment.