We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7512688 commit a2a8e08Copy full SHA for a2a8e08
1 file changed
.php-cs-fixer.dist.php
@@ -3,11 +3,12 @@
3
use Realodix\Relax\Config;
4
use Realodix\Relax\Finder;
5
6
-$localRules = [
+$rules = [
7
+ '@Realodix/Relax' => true,
8
'single_import_per_statement' => false,
9
];
10
-return Config::create('relax')
11
- ->setRules($localRules)
+return Config::this()
12
+ ->setRules($rules)
13
->setFinder(Finder::laravel()->in(__DIR__))
14
->setCacheFile(__DIR__.'/.tmp/.php-cs-fixer.cache');
0 commit comments