![]() 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/dceprojects.corals.io/vendor/php-coveralls/php-coveralls/ |
<?php $finder = PhpCsFixer\Finder::create() ->ignoreDotFiles(false) ->ignoreVCSIgnored(true) ->exclude('tests/Fixture') ->in(__DIR__) ; $config = new PhpCsFixer\Config(); $config ->setRiskyAllowed(true) ->setRules([ '@PhpCsFixer' => true, '@PhpCsFixer:risky' => true, '@PHP70Migration' => true, 'yoda_style' => [ 'equal' => false, 'identical' => false, 'less_and_greater' => false, ], 'concat_space' => ['spacing' => 'one'], 'explicit_indirect_variable' => false, 'explicit_string_variable' => false, 'method_chaining_indentation' => false, 'php_unit_test_annotation' => false, 'single_line_comment_style' => false, 'ternary_to_elvis_operator' => false, 'visibility_required' => ['elements' => ['method', 'property']], ]) ->setFinder($finder) ; return $config;