Skip to content

Commit

Permalink
fix(output): add new line before the title
Browse files Browse the repository at this point in the history
  • Loading branch information
imdhemy committed Apr 9, 2024
1 parent 97b69d0 commit 3edd4b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/IO/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public function question(string|array $message): void

public function title(string|array $message): void
{
$this->newLine();
$this->write(sprintf('<fg=default;bg=default;options=underscore>➜ %s </>', $message));
$this->newLine();
}
Expand Down

0 comments on commit 3edd4b9

Please sign in to comment.