-
-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathSetList.php
More file actions
171 lines (138 loc) · 3.72 KB
/
SetList.php
File metadata and controls
171 lines (138 loc) · 3.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
declare(strict_types=1);
namespace Rector\Set\ValueObject;
/**
* @api
*/
final class SetList
{
/**
* @internal
* @var string
*/
public const PHP_POLYFILLS = __DIR__ . '/../../../config/set/php-polyfills.php';
/**
* @var string
*/
public const CODE_QUALITY = __DIR__ . '/../../../config/set/code-quality.php';
/**
* @var string
*/
public const CODING_STYLE = __DIR__ . '/../../../config/set/coding-style.php';
/**
* @var string
*/
public const DEAD_CODE = __DIR__ . '/../../../config/set/dead-code.php';
/**
* @var string
*/
public const STRICT_BOOLEANS = __DIR__ . '/../../../config/set/strict-booleans.php';
/**
* @var string
*/
public const GMAGICK_TO_IMAGICK = __DIR__ . '/../../../config/set/gmagick-to-imagick.php';
/**
* @var string
*/
public const NAMING = __DIR__ . '/../../../config/set/naming.php';
/**
* Opinionated rules that match rector coding standard
*
* @var string
*/
public const RECTOR_PRESET = __DIR__ . '/../../../config/set/rector-preset.php';
/**
* @var string
*/
public const PHP_52 = __DIR__ . '/../../../config/set/php52.php';
/**
* @var string
*/
public const PHP_53 = __DIR__ . '/../../../config/set/php53.php';
/**
* @var string
*/
public const PHP_54 = __DIR__ . '/../../../config/set/php54.php';
/**
* @var string
*/
public const PHP_55 = __DIR__ . '/../../../config/set/php55.php';
/**
* @var string
*/
public const PHP_56 = __DIR__ . '/../../../config/set/php56.php';
/**
* @var string
*/
public const PHP_70 = __DIR__ . '/../../../config/set/php70.php';
/**
* @var string
*/
public const PHP_71 = __DIR__ . '/../../../config/set/php71.php';
/**
* @var string
*/
public const PHP_72 = __DIR__ . '/../../../config/set/php72.php';
/**
* @var string
*/
public const PHP_73 = __DIR__ . '/../../../config/set/php73.php';
/**
* @var string
*/
public const PHP_74 = __DIR__ . '/../../../config/set/php74.php';
/**
* @var string
*/
public const PHP_80 = __DIR__ . '/../../../config/set/php80.php';
/**
* @var string
*/
public const PHP_81 = __DIR__ . '/../../../config/set/php81.php';
/**
* @var string
*/
public const PHP_82 = __DIR__ . '/../../../config/set/php82.php';
/**
* @var string
*/
public const PHP_83 = __DIR__ . '/../../../config/set/php83.php';
/**
* @var string
*/
public const PHP_84 = __DIR__ . '/../../../config/set/php84.php';
/**
* @var string
*/
public const PHP_85 = __DIR__ . '/../../../config/set/php85.php';
/**
* @var string
*/
public const PRIVATIZATION = __DIR__ . '/../../../config/set/privatization.php';
/**
* @var string
*/
public const TYPE_DECLARATION = __DIR__ . '/../../../config/set/type-declaration.php';
/**
* @var string
*/
public const EARLY_RETURN = __DIR__ . '/../../../config/set/early-return.php';
/**
* @var string
*/
public const INSTANCEOF = __DIR__ . '/../../../config/set/instanceof.php';
/**
* @var string
*/
public const CARBON = __DIR__ . '/../../../config/set/datetime-to-carbon.php';
/**
* @var string
*/
public const BEHAT_ANNOTATIONS_TO_ATTRIBUTES = __DIR__ . '/../../../config/set/behat-annotations-to-attributes.php';
/**
* @experimental Check generic types in runtime with assert. Generics for impatient people.
*
* @var string
*/
public const ASSERT = __DIR__ . '/../../../config/set/assert.php';
}