You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
197 B

  1. <?php
  2. $finder = (new PhpCsFixer\Finder())
  3. ->in(__DIR__)
  4. ->exclude('var')
  5. ;
  6. return (new PhpCsFixer\Config())
  7. ->setRules([
  8. '@Symfony' => true,
  9. ])
  10. ->setFinder($finder)
  11. ;