IntegrationCaseFactoryInterface.php 569 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\Tests\Test;
  12. use Symfony\Component\Finder\SplFileInfo;
  13. /**
  14. * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
  15. *
  16. * @internal
  17. */
  18. interface IntegrationCaseFactoryInterface
  19. {
  20. /**
  21. * @return IntegrationCase
  22. */
  23. public function create(SplFileInfo $file);
  24. }