Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolus committed Oct 14, 2019
1 parent 3d47442 commit 5342418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/RunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ protected function loadTaskContainer()
}

/**
* Return the hostname wrapped in a color tag (cycles through 4 colors for each new host)
* Return the hostname wrapped in a color tag (cycles through 4 colors for each new host).
*
* @param string $host
* @return string
Expand All @@ -233,7 +233,7 @@ protected function getColoredHost($host)
{
$colors = ['yellow', 'cyan', 'magenta', 'blue'];

if (!in_array($host, $this->hosts)) {
if (! in_array($host, $this->hosts)) {
$this->hosts[] = $host;
}

Expand Down

0 comments on commit 5342418

Please sign in to comment.