.php_cs.dist 401 B

123456789101112131415
  1. <?php
  2. $finder = PhpCsFixer\Finder::create()
  3. ->exclude('vendor')
  4. ->in(__DIR__)
  5. ;
  6. return PhpCsFixer\Config::create()
  7. ->setRules([
  8. '@PSR2' => true,
  9. 'array_syntax' => ['syntax' => 'short'],
  10. 'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
  11. 'binary_operator_spaces' => ['align_double_arrow' => true, 'align_equals' => false],
  12. ])
  13. ->setIndent("\t")
  14. ->setFinder($finder)
  15. ;