Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
babenkoivan committed Oct 19, 2023
1 parent 06db0e6 commit c69448e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,8 @@ public function showStatus(bool $onlyPending = false): self
return $this;
}

$this->output->writeln(sprintf(
'<fg=yellow;options=bold>%s</>',
$onlyPending ? 'No pending migrations' : 'No migrations found')
$this->output->writeln(
sprintf('<fg=yellow;options=bold>%s</>', $onlyPending ? 'No pending migrations' : 'No migrations found')
);

return $this;
Expand Down

0 comments on commit c69448e

Please sign in to comment.