.php_cs 695 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * DO NOT EDIT THIS FILE!
  4. *
  5. * It's auto-generated by sonata-project/dev-kit package.
  6. *
  7. * Package `sllh/php-cs-fixer-styleci-bridge` is required to get it working.
  8. */
  9. require_once __DIR__.'/vendor/sllh/php-cs-fixer-styleci-bridge/autoload.php';
  10. use SLLH\StyleCIBridge\ConfigBridge;
  11. use Symfony\CS\Fixer\Contrib\HeaderCommentFixer;
  12. $header = <<<EOF
  13. This file is part of the Sonata Project package.
  14. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  15. For the full copyright and license information, please view the LICENSE
  16. file that was distributed with this source code.
  17. EOF;
  18. HeaderCommentFixer::setHeader($header);
  19. return ConfigBridge::create()
  20. ->setUsingCache(true)
  21. ;