PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
rector
/
rector-downgrade-php
/
config
/
set
<?php declare (strict_types=1); namespace RectorPrefix202411; use Rector\Config\RectorConfig; use Rector\ValueObject\PhpVersion; use Rector\DowngradePhp73\Rector\ConstFetch\DowngradePhp73JsonConstRector; use Rector\DowngradePhp73\Rector\FuncCall\DowngradeArrayKeyFirstLastRector; use Rector\DowngradePhp73\Rector\FuncCall\DowngradeIsCountableRector; use Rector\DowngradePhp73\Rector\FuncCall\DowngradeTrailingCommasInFunctionCallsRector; use Rector\DowngradePhp73\Rector\FuncCall\SetCookieOptionsArrayToArgumentsRector; use Rector\DowngradePhp73\Rector\List_\DowngradeListReferenceAssignmentRector; use Rector\DowngradePhp73\Rector\String_\DowngradeFlexibleHeredocSyntaxRector; use Rector\DowngradePhp73\Rector\Unset_\DowngradeTrailingCommasInUnsetRector; return static function (RectorConfig $rectorConfig) : void { $rectorConfig->phpVersion(PhpVersion::PHP_72); $rectorConfig->rules([DowngradeFlexibleHeredocSyntaxRector::class, DowngradeListReferenceAssignmentRector::class, DowngradeTrailingCommasInFunctionCallsRector::class, DowngradeArrayKeyFirstLastRector::class, SetCookieOptionsArrayToArgumentsRector::class, DowngradeIsCountableRector::class, DowngradePhp73JsonConstRector::class, DowngradeTrailingCommasInUnsetRector::class]); };
[-] downgrade-php73.php
[edit]
[+]
..
[-] downgrade-php74.php
[edit]
[-] downgrade-php80.php
[edit]
[+]
level
[-] downgrade-php83.php
[edit]
[-] downgrade-php81.php
[edit]
[-] downgrade-php82.php
[edit]
[-] downgrade-php72.php
[edit]