<?php 
 
return PhpCsFixer\Config::create() 
    ->setRules([ 
        '@PSR2' => true, 
        'array_syntax' => ['syntax' => 'short'], 
        'general_phpdoc_annotation_remove' => ['annotations' => ['author']], 
        'header_comment' => [ 
            'comment_type' => 'PHPDoc', 
            'header' => <<<COMMENT 
@copyright Copyright (c) 2020 Insolita <[email protected]> and contributors 
@license https://github.com/insolita/yii2-fractal/blob/master/LICENSE 
COMMENT 
        ] 
    ]) 
; 
 
 
 |