Files
assets
bin
config
migrations
public
src
templates
tools
translations
.env
.eslintrc
.gitignore
.php-cs-fixer.cache
.php-cs-fixer.php
LICENSE
README.md
TODO
bootstrap.js
composer.json
composer.lock
controllers.json
docker-compose.override.yml
docker-compose.yml
package.json
rector.php
symfony.lock
webpack.config.js
yarn.lock
Spookie/.php-cs-fixer.php
2022-05-03 14:52:04 +02:00

11 lines
226 B
PHP

<?php
$finder = PhpCsFixer\Finder::create()
->in(dirs: __DIR__ . '/src');
$config = new PhpCsFixer\Config();
return $config->setRules(rules: [
'@Symfony' => true,
'yoda_style' => false,
])
->setFinder(finder: $finder);