* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer; use Symfony\Component\Finder\Finder as BaseFinder; /** * @author Fabien Potencier * @author Dariusz Rumiński */ class Finder extends BaseFinder { public function __construct() { parent::__construct(); $this ->files() ->name('/\.php$/') ->exclude('vendor') ; } }