mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-14 04:44:57 +01:00
8fc6af697d
9a6afde216
[DX] Add LevelSetList (#971)
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Set\ValueObject;
|
|
|
|
use Rector\Set\Contract\SetListInterface;
|
|
final class LevelSetList implements \Rector\Set\Contract\SetListInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_81 = __DIR__ . '/../../../config/set/level/up-to-php81.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_80 = __DIR__ . '/../../../config/set/level/up-to-php80.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_74 = __DIR__ . '/../../../config/set/level/up-to-php74.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_73 = __DIR__ . '/../../../config/set/level/up-to-php73.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_72 = __DIR__ . '/../../../config/set/level/up-to-php72.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_71 = __DIR__ . '/../../../config/set/level/up-to-php71.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_70 = __DIR__ . '/../../../config/set/level/up-to-php70.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_56 = __DIR__ . '/../../../config/set/level/up-to-php56.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_55 = __DIR__ . '/../../../config/set/level/up-to-php55.php';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const UP_TO_PHP_54 = __DIR__ . '/../../../config/set/level/up-to-php54.php';
|
|
}
|