Server IP : 184.154.167.98 / Your IP : 52.14.219.203 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/www/fotografico/3rdparty/justinrainbow/json-schema/ |
Upload File : |
<?php $finder = new PhpCsFixer\Finder(); $config = new PhpCsFixer\Config('json-schema'); $finder->in(__DIR__); /* Based on ^2.1 of php-cs-fixer */ $config ->setRules(array( // default '@PSR2' => true, '@Symfony' => true, // additionally 'array_syntax' => array('syntax' => 'long'), 'binary_operator_spaces' => false, 'concat_space' => array('spacing' => 'one'), 'no_useless_else' => true, 'no_useless_return' => true, 'ordered_imports' => true, 'phpdoc_no_package' => false, 'phpdoc_order' => true, 'phpdoc_summary' => false, 'pre_increment' => false, 'increment_style' => false, 'simplified_null_return' => false, 'trailing_comma_in_multiline_array' => false, 'yoda_style' => false, 'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'), )) ->setFinder($finder) ; return $config;