Completed
Push — master ( fa5237...2fef65 )
by Carlos
02:19
created
src/Command/LintCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
         $maxColumns = floor($this->getScreenColumns() / 2);
192 192
         $verbosity = $output->getVerbosity();
193 193
 
194
-        $linter->setProcessCallback(function ($status, $filename) use ($output, $verbosity, $fileCount, $maxColumns) {
194
+        $linter->setProcessCallback(function($status, $filename) use ($output, $verbosity, $fileCount, $maxColumns) {
195 195
             static $i = 0;
196 196
 
197 197
             if ($i && $i % $maxColumns === 0) {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             }
201 201
             ++$i;
202 202
             if ($verbosity >= OutputInterface::VERBOSITY_VERBOSE) {
203
-                $output->writeln('Linting: '.$filename. "\t".($status === 'ok' ? '<info>OK</info>' : '<error>Error</error>'));
203
+                $output->writeln('Linting: '.$filename."\t".($status === 'ok' ? '<info>OK</info>' : '<error>Error</error>'));
204 204
             } else {
205 205
                 $output->write($status === 'ok' ? '<info>.</info>' : '<error>E</error>');
206 206
             }
Please login to merge, or discard this patch.