HOME


5h-3LL 1.0
DIR: /opt/cpanel/ea-wappspector/vendor/rector/rector/config/set
/opt/cpanel/ea-wappspector/vendor/rector/rector/config/set/
Upload File:
Current File : /opt/cpanel/ea-wappspector/vendor/rector/rector/config/set/php53.php
<?php

declare (strict_types=1);
namespace RectorPrefix202411;

use Rector\Config\RectorConfig;
use Rector\Php53\Rector\FuncCall\DirNameFileConstantToDirConstantRector;
use Rector\Php53\Rector\Ternary\TernaryToElvisRector;
use Rector\Php53\Rector\Variable\ReplaceHttpServerVarsByServerRector;
return static function (RectorConfig $rectorConfig) : void {
    $rectorConfig->rules([TernaryToElvisRector::class, DirNameFileConstantToDirConstantRector::class, ReplaceHttpServerVarsByServerRector::class]);
};