HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/shaneconrad.me/inventory/vendor/nyholm/psr7/.php-cs-fixer.dist.php
<?php

declare(strict_types=1);

$finder = PhpCsFixer\Finder::create()
    ->in(__DIR__.'/src')
    ->in(__DIR__.'/tests');

$config = new PhpCsFixer\Config();

return $config->setRules([
    '@Symfony' => true,
    '@Symfony:risky' => true,
    'native_function_invocation' => ['include'=> ['@all']],
    'native_constant_invocation' => true,
    'ordered_imports' => true,
    'declare_strict_types' => false,
    'linebreak_after_opening_tag' => false,
    'single_import_per_statement' => false,
    'blank_line_after_opening_tag' => false,
    'concat_space' => ['spacing'=>'one'],
    'phpdoc_align' => ['align'=>'left'],
])
    ->setRiskyAllowed(true)
    ->setFinder($finder);