| @@ -155,7 +155,7 @@ | ||
| 155 | 155 | $colWidth = strlen($this->output->format($col, OutputFormat::PLAIN)); | 
| 156 | 156 | |
| 157 | 157 | // if not last row | 
| 158 | -                    if ( array_has($row['cols'], $colIndex + 1)) { | |
| 158 | +                    if (array_has($row['cols'], $colIndex + 1)) { | |
| 159 | 159 |                          $col .= str_repeat(' ', $width - $colWidth); | 
| 160 | 160 | } | 
| 161 | 161 | } | 
| @@ -210,7 +210,7 @@ | ||
| 210 | 210 | * @param bool $enableBuffering | 
| 211 | 211 | */ | 
| 212 | 212 |      public function setEnableBuffering($enableBuffering) { | 
| 213 | - $this->enableBuffering = !! $enableBuffering; | |
| 213 | + $this->enableBuffering = ! ! $enableBuffering; | |
| 214 | 214 | } | 
| 215 | 215 | |
| 216 | 216 | /** | 
| @@ -70,7 +70,7 @@ | ||
| 70 | 70 | return true; | 
| 71 | 71 |          } else if (empty($input) and $default) { | 
| 72 | 72 | return true; | 
| 73 | -        }else { | |
| 73 | +        } else { | |
| 74 | 74 | return false; | 
| 75 | 75 | } | 
| 76 | 76 | } | 
| @@ -160,7 +160,7 @@ | ||
| 160 | 160 | * @param ICommand $command | 
| 161 | 161 | */ | 
| 162 | 162 |      public function setCommand(ICommand $command) { | 
| 163 | - $this->command = $command; | |
| 163 | + $this->command = $command; | |
| 164 | 164 | } | 
| 165 | 165 | |
| 166 | 166 | /** |