Skip to content

Commit

Permalink
Re-enable php-cs-fixer cache
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot committed Sep 8, 2015
1 parent 574d986 commit 314b51a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ $fixers = [
'function_declaration',
'include',
'indentation',
'linefeed',
'join_function',
'line_after_namespace',
'linefeed',
'list_commas',
'logical_not_operators_with_successor_space',
'lowercase_constants',
Expand Down Expand Up @@ -70,4 +70,8 @@ $fixers = [
'whitespacy_lines',
];

return Config::create()->level(FixerInterface::NONE_LEVEL)->fixers($fixers)->finder(DefaultFinder::create()->in(__DIR__));
return Config::create()
->finder(DefaultFinder::create()->in(__DIR__))
->fixers($fixers)
->level(FixerInterface::NONE_LEVEL)
->setUsingCache(true);

0 comments on commit 314b51a

Please sign in to comment.