![]() 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/job-board.corals.io/vendor/omise/omise-php/ |
<?php $finder = Symfony\Component\Finder\Finder::create() ->exclude(['vendor']) ->name('*.php') ->in(__DIR__); $config = new PhpCsFixer\Config(); return $config->setRules([ '@PSR12' => true, 'strict_param' => false, 'no_unused_imports' => true, 'indentation_type' => true, 'array_indentation' => false, 'single_quote' => true, 'method_chaining_indentation' => true, 'trim_array_spaces' => true, 'array_syntax' => ['syntax' => 'short'], 'binary_operator_spaces' => [ 'operators' => [ '=>' => 'single_space', '=' => 'single_space', '+=' => 'single_space', '-=' => 'single_space', '>' => 'single_space', '<' => 'single_space', '<=' => 'single_space', '>=' => 'single_space', '||' => 'single_space', '&&' => 'single_space', ], ], 'blank_line_before_statement' => ['statements' => ['break', 'case', 'continue', 'declare', 'default', 'exit', 'goto', 'return', 'switch', 'throw', 'try']], // This is just prettier / easier to read. 'concat_space' => ['spacing' => 'one'], // Visibility annotations are not supported by php5.6 'visibility_required' => false, ]) ->setIndent(str_pad('', 4)) ->setLineEnding("\n") ->setFinder($finder);