forked from loafle/openapi-generator-original
* Removed commented code * Input validation is now supported as strict JSON validation * [PHP][Symfony] Improve the implementation Closes #6614 * Generated code is tested to assure it compiles and updated README to dynamically load dependencies via composer * Updated shell script because shippable tests were failing
19 lines
394 B
PHP
19 lines
394 B
PHP
<?php
|
|
|
|
return Symfony\CS\Config::create()
|
|
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
|
|
->setUsingCache(true)
|
|
->fixers(
|
|
[
|
|
'ordered_use',
|
|
'phpdoc_order',
|
|
'short_array_syntax',
|
|
'strict',
|
|
'strict_param'
|
|
]
|
|
)
|
|
->finder(
|
|
Symfony\CS\Finder\DefaultFinder::create()
|
|
->in(__DIR__)
|
|
);
|