Mercurial > packages > magicforger
view .php-cs-fixer.dist.php @ 23:827efbf4d73c main-dev
Huge changes to the relationships for models and more complex
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Fri, 11 Apr 2025 20:50:20 -0400 |
| parents | 4216c0dc638c |
| children |
line wrap: on
line source
<?php $finder = PhpCsFixer\Finder::create() ->in(__DIR__) ->exclude('.hg') ; $config = new PhpCsFixer\Config(); return $config->setRules([ '@Symfony' => true, 'full_opening_tag' => false, ]) ->setFinder($finder) ;
