Skip to content

Commit

Permalink
php-cs-fixer - fix spaces in configuration file path - closes #184
Browse files Browse the repository at this point in the history
Introduced in 1bd44d

Related phpunit change
c7e9e1a
160434
  • Loading branch information
zdenekdrahos committed Sep 13, 2019
1 parent e1165cb commit 4922322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/Analyzer/PhpCsFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __invoke()
'format' => $this->options->isSavedToFiles ? 'junit' : 'txt',
];
if ($configFile) {
$args['config'] = $configFile;
$args['config'] = \Edge\QA\escapePath($configFile);
} else {
$args += [
'rules' => $this->config->value('php-cs-fixer.rules'),
Expand Down

0 comments on commit 4922322

Please sign in to comment.