forked from rectorphp/rector-downgrade-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDowngradeLevelSetList.php
More file actions
32 lines (20 loc) · 1.16 KB
/
Copy pathDowngradeLevelSetList.php
File metadata and controls
32 lines (20 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
declare(strict_types=1);
namespace Rector\Set\ValueObject;
/**
* @api
* @deprecated use ->withDowngradeSets() in rector.php instead
*/
final class DowngradeLevelSetList
{
public const string DOWN_TO_PHP_85 = __DIR__ . '/../../../config/set/level/down-to-php85.php';
public const string DOWN_TO_PHP_84 = __DIR__ . '/../../../config/set/level/down-to-php84.php';
public const string DOWN_TO_PHP_83 = __DIR__ . '/../../../config/set/level/down-to-php83.php';
public const string DOWN_TO_PHP_82 = __DIR__ . '/../../../config/set/level/down-to-php82.php';
public const string DOWN_TO_PHP_81 = __DIR__ . '/../../../config/set/level/down-to-php81.php';
public const string DOWN_TO_PHP_80 = __DIR__ . '/../../../config/set/level/down-to-php80.php';
public const string DOWN_TO_PHP_74 = __DIR__ . '/../../../config/set/level/down-to-php74.php';
public const string DOWN_TO_PHP_73 = __DIR__ . '/../../../config/set/level/down-to-php73.php';
public const string DOWN_TO_PHP_72 = __DIR__ . '/../../../config/set/level/down-to-php72.php';
public const string DOWN_TO_PHP_71 = __DIR__ . '/../../../config/set/level/down-to-php71.php';
}