.php_cs.dist 288 B

123456789101112131415
  1. <?php
  2. $finder = PhpCsFixer\Finder::create()
  3. ->in(__DIR__)
  4. ;
  5. return PhpCsFixer\Config::create()
  6. ->setRules(array(
  7. '@Symfony' => true,
  8. 'concat_space' => array('spacing' => 'one'),
  9. 'phpdoc_annotation_without_dot' => false,
  10. ))
  11. ->setFinder($finder)
  12. ;