@@ -221,7 +221,7 @@ discard block |
||
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 | ); |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | $succeed = true; |
250 | 250 | $config = $this->getConfig('phpcsfixer', array( |
251 | 251 | 'fixers' => [ |
252 | - '-psr0','eof_ending','indentation','linefeed','lowercase_keywords','trailing_spaces', |
|
253 | - 'short_tag','php_closing_tag','extra_empty_lines','elseif','function_declaration' |
|
252 | + '-psr0', 'eof_ending', 'indentation', 'linefeed', 'lowercase_keywords', 'trailing_spaces', |
|
253 | + 'short_tag', 'php_closing_tag', 'extra_empty_lines', 'elseif', 'function_declaration' |
|
254 | 254 | ], |
255 | 255 | 'triggered_by' => 'php' |
256 | 256 | )); |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | |
323 | 323 | $processBuilder->setWorkingDirectory(getcwd()); |
324 | 324 | $phpCsFixer = $processBuilder->getProcess(); |
325 | - $phpCsFixer->run(function ($type, $buffer) { |
|
325 | + $phpCsFixer->run(function($type, $buffer) { |
|
326 | 326 | $this->output->write($buffer); |
327 | 327 | }); |
328 | 328 | |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | |
340 | 340 | $processBuilder->setWorkingDirectory(getcwd()); |
341 | 341 | $phpCsFixer = $processBuilder->getProcess(); |
342 | - $phpCsFixer->run(function ($type, $buffer) { |
|
342 | + $phpCsFixer->run(function($type, $buffer) { |
|
343 | 343 | $this->output->write($buffer); |
344 | 344 | }); |
345 | 345 |