Completed
Push — master ( b17148...19f444 )
by Carlos
02:33
created
src/Command/LintCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         $maxColumns = floor((new Terminal())->getWidth() / 2);
249 249
         $verbosity = $output->getVerbosity();
250 250
 
251
-        $linter->setProcessCallback(function ($status, SplFileInfo $file) use ($output, $verbosity, $fileCount, $maxColumns) {
251
+        $linter->setProcessCallback(function($status, SplFileInfo $file) use ($output, $verbosity, $fileCount, $maxColumns) {
252 252
             static $i = 1;
253 253
 
254 254
             $percent = floor(($i / $fileCount) * 100);
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 
313 313
         foreach ($lines as $i => $line) {
314 314
             $snippet .= (abs($lineNumber) === $i + 1 ? '  > ' : '    ');
315
-            $snippet .= str_pad($i + 1, $lineStrlen, ' ', STR_PAD_LEFT) . '| ' . rtrim($line) . PHP_EOL;
315
+            $snippet .= str_pad($i + 1, $lineStrlen, ' ', STR_PAD_LEFT).'| '.rtrim($line).PHP_EOL;
316 316
         }
317 317
 
318 318
         return $snippet;
Please login to merge, or discard this patch.