Skip to content
Merged

8.0 #12

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
<?php

declare(strict_types=1);

/*
* This file is part of the ChamberOrchestra package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

$finder = (new PhpCsFixer\Finder())
->in(__DIR__.'/src')
->in(__DIR__.'/tests')
->notPath('Resources/config/')
;

return (new PhpCsFixer\Config())
Expand All @@ -20,11 +12,13 @@
'@Symfony' => true,
'header_comment' => [
'header' => <<<'EOF'
This file is part of the ChamberOrchestra package.
This file is part of the ChamberOrchestra package.

For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF,
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF,
'location' => 'after_declare_strict',
'separate' => 'both',
],
'declare_strict_types' => true,
'strict_param' => true,
Expand Down