tao-test/app/vendor/cebe/php-openapi/.php_cs.dist

18 lines
485 B
Plaintext
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?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) 2018 Carsten Brandt <mail@cebe.cc> and contributors
@license https://github.com/cebe/php-openapi/blob/master/LICENSE
COMMENT
]
])
;