12345678910111213141516171819202122232425262728293031323334 |
- <?php
- $header = <<<EOF
- This file is part of the Sonata Project package.
- (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
- For the full copyright and license information, please view the LICENSE
- file that was distributed with this source code.
- EOF;
- Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header);
- $finder = Symfony\CS\Finder\DefaultFinder::create()
- ->in(array(__DIR__))
- ->exclude(array('Tests/Fixtures'))
- ;
- return Symfony\CS\Config\Config::create()
- ->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
- ->fixers(array(
- 'header_comment',
- '-unalign_double_arrow',
- '-unalign_equals',
- 'align_double_arrow',
- 'newline_after_open_tag',
- 'ordered_use',
- 'long_array_syntax',
- 'php_unit_construct',
- 'php_unit_strict',
- ))
- ->setUsingCache(true)
- ->finder($finder)
- ;
|