RuleSet.php 560 B

123456789101112131415161718192021222324252627
  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. namespace PhpCsFixer;
  12. /**
  13. * Set of rules to be used by fixer.
  14. *
  15. * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
  16. * @author SpacePossum
  17. *
  18. * @internal
  19. *
  20. * @deprecated will be removed in 3.0, use \PhpCsFixer\RuleSet\RuleSet
  21. */
  22. final class RuleSet extends RuleSet\RuleSet
  23. {
  24. }