HEX
Server: LiteSpeed
System: Linux server334.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: richfield (1256)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/richfield/www/vendor/yoeunes/toastr/.php-cs-fixer.dist.php
<?php

/*
 * This file is part of the yoeunes/toastr package.
 * (c) Younes KHOUBZA <younes.khoubza@gmail.com>
 */

$header = <<<'EOF'
This file is part of the yoeunes/toastr package.
(c) Younes KHOUBZA <younes.khoubza@gmail.com>
EOF;

$rules = array(
    '@Symfony' => true,
    'header_comment' => array('header' => $header),
    'array_syntax' => array('syntax' => 'long'),
    'visibility_required' => array('elements' => array('property', 'method')),
);

$finder = new PhpCsFixer\Finder();
$finder->in(__DIR__)->exclude(__DIR__.'/vendor');

$config = new PhpCsFixer\Config();

return $config->setFinder($finder)
    ->setUsingCache(false)
    ->setRiskyAllowed(true)
    ->setRules($rules);