Skip to content

Commit

Permalink
[5.5] Avoid exposing empty string (#22638)
Browse files Browse the repository at this point in the history
* [5.5] Avoid exposing empty string

* Update Command.php
  • Loading branch information
carusogabriel authored and taylorotwell committed Jan 4, 2018
1 parent 87c3a09 commit b2f334f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public function alert($string)
$this->comment('* '.$string.' *');
$this->comment(str_repeat('*', strlen($string) + 12));

$this->output->writeln('');
$this->output->newLine();
}

/**
Expand Down

0 comments on commit b2f334f

Please sign in to comment.