2021-03-12 02:21:29 +01:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2021-03-12 02:21:29 +01:00
|
|
|
namespace Rector\Set\ValueObject;
|
|
|
|
|
|
|
|
use Rector\Set\Contract\SetListInterface;
|
2021-05-10 22:23:08 +00:00
|
|
|
final class DowngradeSetList implements \Rector\Set\Contract\SetListInterface
|
2021-03-12 02:21:29 +01:00
|
|
|
{
|
2021-05-05 23:56:59 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_53 = __DIR__ . '/../../../config/set/downgrade-php53.php';
|
2021-03-12 02:21:29 +01:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_70 = __DIR__ . '/../../../config/set/downgrade-php70.php';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_71 = __DIR__ . '/../../../config/set/downgrade-php71.php';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_72 = __DIR__ . '/../../../config/set/downgrade-php72.php';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_73 = __DIR__ . '/../../../config/set/downgrade-php73.php';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_74 = __DIR__ . '/../../../config/set/downgrade-php74.php';
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public const PHP_80 = __DIR__ . '/../../../config/set/downgrade-php80.php';
|
|
|
|
}
|