1234567891011121314151617181920 |
- <?php
- /*
- * This file is part of the PHP CS utility.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\CS;
- /**
- * @author Fabien Potencier <fabien@symfony.com>
- */
- interface FinderInterface
- {
- public function setDir($dir);
- }
|