Server IP : 213.176.29.180 / Your IP : 18.189.186.5 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/webtaragh/public_html/whmcs/vendor/psr/../justinrainbow/../phpmyadmin/sql-parser/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php // @see https://github.com/FriendsOfPHP/PHP-CS-Fixer $finder = PhpCsFixer\Finder::create() ->in(array(__DIR__ . '/bin', __DIR__ . '/src', __DIR__ . '/tests', __DIR__ . '/tools')) ; return PhpCsFixer\Config::create() ->setRules(array( '@PSR1' => true, '@PSR2' => true, '@Symfony' => true, 'array_syntax' => array('syntax' => 'long'), 'concat_space' => array('spacing' => 'one'), 'ordered_imports' => true, 'no_trailing_whitespace' => true, 'no_useless_return' => true, 'no_useless_else' => true, 'phpdoc_add_missing_param_annotation' => true, 'phpdoc_order' => true, 'yoda_style' => array( 'equal' => false, 'identical' => false, 'less_and_greater' => false, ) )) ->setFinder($finder) ;