-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDowngradeSetList.php
More file actions
57 lines (46 loc) · 1.19 KB
/
DowngradeSetList.php
File metadata and controls
57 lines (46 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
declare(strict_types=1);
namespace Rector\Set\ValueObject;
/**
* @api
* @deprecated use ->withDowngradeSets() in rector.php instead
*/
final class DowngradeSetList
{
/**
* @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';
/**
* @var string
*/
public const PHP_81 = __DIR__ . '/../../../config/set/downgrade-php81.php';
/**
* @var string
*/
public const PHP_82 = __DIR__ . '/../../../config/set/downgrade-php82.php';
/**
* @var string
*/
public const PHP_83 = __DIR__ . '/../../../config/set/downgrade-php83.php';
/**
* @var string
*/
public const PHP_84 = __DIR__ . '/../../../config/set/downgrade-php84.php';
/**
* @var string
*/
public const PHP_85 = __DIR__ . '/../../../config/set/downgrade-php85.php';
}