mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
c0086b7e14
[e2e] Add e2e for tests removed node display applied rules with return null (#2320)
13 lines
450 B
PHP
13 lines
450 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220516;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Core\ValueObject\PhpVersion;
|
|
use Rector\DowngradePhp53\Rector\Dir\DirConstToFileConstRector;
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->phpVersion(\Rector\Core\ValueObject\PhpVersion::PHP_52);
|
|
$rectorConfig->rule(\Rector\DowngradePhp53\Rector\Dir\DirConstToFileConstRector::class);
|
|
};
|