Completed
Push — master ( 14e077...a99888 )
by Ivannis Suárez
05:02
created
src/Cubiche/Tools/CodeQualityTool.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
                 $test = $processBuilder->getProcess();
223 223
                 $test->run(
224
-                    function ($type, $buffer) {
224
+                    function($type, $buffer) {
225 225
                         $this->output->write($buffer);
226 226
                     }
227 227
                 );
@@ -245,8 +245,8 @@  discard block
 block discarded – undo
245 245
         $succeed = true;
246 246
         $config = $this->getConfig('phpcsfixer', array(
247 247
             'fixers' => [
248
-                '-psr0','eof_ending','indentation','linefeed','lowercase_keywords','trailing_spaces',
249
-                'short_tag','php_closing_tag','extra_empty_lines','elseif','function_declaration'
248
+                '-psr0', 'eof_ending', 'indentation', 'linefeed', 'lowercase_keywords', 'trailing_spaces',
249
+                'short_tag', 'php_closing_tag', 'extra_empty_lines', 'elseif', 'function_declaration'
250 250
             ],
251 251
             'triggered_by' => 'php'
252 252
         ));
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
             );
293 293
             $processBuilder->setWorkingDirectory(getcwd());
294 294
             $phpCsFixer = $processBuilder->getProcess();
295
-            $phpCsFixer->run(function ($type, $buffer) {
295
+            $phpCsFixer->run(function($type, $buffer) {
296 296
                 $this->output->write($buffer);
297 297
             });
298 298
 
Please login to merge, or discard this patch.