ConfigurationDefinitionFixerInterface.php 732 B

12345678910111213141516171819202122232425262728
  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\Fixer;
  12. use PhpCsFixer\FixerConfiguration\FixerConfigurationResolverInterface;
  13. /**
  14. * @deprecated Will be incorporated into `ConfigurableFixerInterface` in 3.0
  15. */
  16. interface ConfigurationDefinitionFixerInterface extends ConfigurableFixerInterface
  17. {
  18. /**
  19. * Defines the available configuration options of the fixer.
  20. *
  21. * @return FixerConfigurationResolverInterface
  22. */
  23. public function getConfigurationDefinition();
  24. }