.php-cs-fixer.php 597 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of PHP CS Fixer.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. * Dariusz Rumiński <dariusz.ruminski@gmail.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. if (!class_exists('ConfigurationResolverPathsIntersection_d_Config')) {
  12. class ConfigurationResolverPathsIntersection_d_Config extends PhpCsFixer\Config
  13. {
  14. }
  15. }
  16. return (new ConfigurationResolverPathsIntersection_d_Config())
  17. ->setFinder(
  18. PhpCsFixer\Finder::create()
  19. ->in(__DIR__.'/..')
  20. )
  21. ;