Skip to content

Commit

Permalink
replace deprecated DefaultFinder class
Browse files Browse the repository at this point in the history
  • Loading branch information
halaei committed Nov 30, 2016
1 parent 2f19ec5 commit a8b7846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Symfony\CS\Config\Config;
use Symfony\CS\FixerInterface;
use Symfony\CS\Finder\DefaultFinder;
use Symfony\CS\Finder;

$fixers = [
'blankline_after_open_tag',
Expand Down Expand Up @@ -71,7 +71,7 @@ $fixers = [
];

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

0 comments on commit a8b7846

Please sign in to comment.