Skip to content

Commit

Permalink
Merge pull request opencfp#849 from ibuildingsnl/fix/exclude-cache
Browse files Browse the repository at this point in the history
Fix: Exclude cached php files from php cs fixer
  • Loading branch information
localheinz authored Dec 5, 2017
2 parents 05f5504 + 86b099b commit eb10a04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ TXT;

$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->name('opencfp');
->name('opencfp')
->exclude('cache');

return PhpCsFixer\Config::create()
->setUsingCache(true)
Expand Down

0 comments on commit eb10a04

Please sign in to comment.