setFinder( PhpCsFixer\Finder::create() ->notName('*.blade.php') ->in(app_path()) ->in(config_path()) ->in(database_path('factories')) ->in(database_path('migrations')) ->in(database_path('seeders')) ->notPath(base_path('vendor')) ->in(base_path('routes')) ->in(base_path('tests')) ) ->setRules([ 'modifier_keywords' => [ 'elements' => ['method', 'property'], ], ]);