| 
<?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) 2021 Insolita <[email protected]> and contributors
 @license MIT
 COMMENT
 ]
 ])
 ;
 
 
 |