Completed
Push — master ( 58056e...b62d26 )
by Carlos
03:38 queued 01:24
created
src/Command/LintCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         $progress->setFormat("%filename%\n\n%current%/%max% [%bar%] %percent:3s%% %elapsed:6s%\n");
96 96
         $progress->start();
97 97
 
98
-        $linter->setProcessCallback(function ($status, $filename) use ($progress) {
98
+        $linter->setProcessCallback(function($status, $filename) use ($progress) {
99 99
             $progress->setMessage("<info>Checking: </info>{$filename}", 'filename');
100 100
             $progress->advance();
101 101
         });
Please login to merge, or discard this patch.
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.