![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/vendor/nyholm/psr7/ |
<?php declare(strict_types=1); $finder = PhpCsFixer\Finder::create() ->in(__DIR__.'/src') ->in(__DIR__.'/tests'); $config = new PhpCsFixer\Config(); return $config->setRules([ '@Symfony' => true, '@Symfony:risky' => true, 'native_function_invocation' => ['include'=> ['@all']], 'native_constant_invocation' => true, 'ordered_imports' => true, 'declare_strict_types' => false, 'linebreak_after_opening_tag' => false, 'single_import_per_statement' => false, 'blank_line_after_opening_tag' => false, 'concat_space' => ['spacing'=>'one'], 'phpdoc_align' => ['align'=>'left'], ]) ->setRiskyAllowed(true) ->setFinder($finder);