Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/4119' into develop
Browse files Browse the repository at this point in the history
Forward port #4119
  • Loading branch information
weierophinney committed Mar 28, 2013
2 parents ea5dd69 + f4fab0a commit 6d47626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README-GIT.md
Expand Up @@ -142,7 +142,7 @@ foreach ($output as $file) {
$return = null; $return = null;
exec("php-cs-fixer fix --dry-run --level=psr2 " . escapeshellarg($fileName), $output, $return); exec("php-cs-fixer fix --dry-run --level=psr2 " . escapeshellarg($fileName), $output, $return);
if ($return != 0 || !empty($output)) { if ($return != 0 || !empty($output)) {
echo "PHP file fails contains CS issues: " . $fileName . ":" . PHP_EOL; echo "PHP file contains CS issues: " . $fileName . ":" . PHP_EOL;
echo implode(PHP_EOL, $output) . PHP_EOL; echo implode(PHP_EOL, $output) . PHP_EOL;
$exit = 1; $exit = 1;
continue; continue;
Expand Down

0 comments on commit 6d47626

Please sign in to comment.