Skip to content

Commit

Permalink
Merge pull request #624 from oanhnn/feature/add-header-comment-fixer
Browse files Browse the repository at this point in the history
Add header comment fixer
  • Loading branch information
antonmedv committed Apr 14, 2016
2 parents 4238fb0 + 8fa88d9 commit cd7ec68
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
<?php

$header = <<<EOF
(c) Anton Medvedev <anton@medv.io>
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()
->exclude('vendor')
->in(__DIR__);

$fixers = [
'header_comment',
'short_array_syntax',
];

Expand Down

0 comments on commit cd7ec68

Please sign in to comment.