<?php
/*
* This file is part of the PHP CS utility.
*
* (c) Fabien Potencier <hide@address.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Symfony\CS\Finder;
use Symfony\Component\Finder\Finder;
/**
* @author Fabien Potencier <hide@address.com>
*/
class Symfony21Finder extends DefaultFinder
{
protected function getDirs($dir)
{
return array($dir.'/src');
}
protected function getFilesToExclude()
{
return array(
'Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml',
);
}
}