Completed
Push — master ( 1ae1bf...d115f0 )
by Carlos
05:30 queued 04:00
created
src/Linter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $files = $this->getFiles();
72 72
         }
73 73
 
74
-        $processCallback = is_callable($this->processCallback) ? $this->processCallback : function () {
74
+        $processCallback = is_callable($this->processCallback) ? $this->processCallback : function() {
75 75
         };
76 76
 
77 77
         $errors = [];
Please login to merge, or discard this patch.
src/Command/LintCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@
 block discarded – undo
256 256
         $verbosity = $output->getVerbosity();
257 257
         $displayProgress = !$input->getOption('no-progress');
258 258
 
259
-        $displayProgress && $linter->setProcessCallback(function ($status, SplFileInfo $file) use ($output, $verbosity, $fileCount, $maxColumns) {
259
+        $displayProgress && $linter->setProcessCallback(function($status, SplFileInfo $file) use ($output, $verbosity, $fileCount, $maxColumns) {
260 260
             static $i = 1;
261 261
 
262 262
             $percent = floor(($i / $fileCount) * 100);
Please login to merge, or discard this patch.