FinderInterface.php 366 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * This file is part of the PHP CS utility.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Symfony\CS;
  11. /**
  12. * @author Fabien Potencier <fabien@symfony.com>
  13. */
  14. interface FinderInterface
  15. {
  16. public function setDir($dir);
  17. }