-
-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathLevelSetList.php
More file actions
43 lines (25 loc) · 1.61 KB
/
Copy pathLevelSetList.php
File metadata and controls
43 lines (25 loc) · 1.61 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
33
34
35
36
37
38
39
40
41
42
43
<?php
declare(strict_types=1);
namespace Rector\Set\ValueObject;
/**
* @api
*/
final class LevelSetList
{
public const string UP_TO_PHP_86 = __DIR__ . '/../../../config/set/level/up-to-php86.php';
public const string UP_TO_PHP_85 = __DIR__ . '/../../../config/set/level/up-to-php85.php';
public const string UP_TO_PHP_84 = __DIR__ . '/../../../config/set/level/up-to-php84.php';
public const string UP_TO_PHP_83 = __DIR__ . '/../../../config/set/level/up-to-php83.php';
public const string UP_TO_PHP_82 = __DIR__ . '/../../../config/set/level/up-to-php82.php';
public const string UP_TO_PHP_81 = __DIR__ . '/../../../config/set/level/up-to-php81.php';
public const string UP_TO_PHP_80 = __DIR__ . '/../../../config/set/level/up-to-php80.php';
public const string UP_TO_PHP_74 = __DIR__ . '/../../../config/set/level/up-to-php74.php';
public const string UP_TO_PHP_73 = __DIR__ . '/../../../config/set/level/up-to-php73.php';
public const string UP_TO_PHP_72 = __DIR__ . '/../../../config/set/level/up-to-php72.php';
public const string UP_TO_PHP_71 = __DIR__ . '/../../../config/set/level/up-to-php71.php';
public const string UP_TO_PHP_70 = __DIR__ . '/../../../config/set/level/up-to-php70.php';
public const string UP_TO_PHP_56 = __DIR__ . '/../../../config/set/level/up-to-php56.php';
public const string UP_TO_PHP_55 = __DIR__ . '/../../../config/set/level/up-to-php55.php';
public const string UP_TO_PHP_54 = __DIR__ . '/../../../config/set/level/up-to-php54.php';
public const string UP_TO_PHP_53 = __DIR__ . '/../../../config/set/level/up-to-php53.php';
}