-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathSymfonySetList.php
178 lines (143 loc) · 4.48 KB
/
SymfonySetList.php
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
172
173
174
175
176
177
178
<?php
declare(strict_types=1);
namespace Rector\Symfony\Set;
/**
* @api
*/
final class SymfonySetList
{
/**
* @var string
*/
final public const CONFIGS = __DIR__ . '/../../config/sets/symfony/configs.php';
/**
* @var string
*/
final public const SYMFONY_25 = __DIR__ . '/../../config/sets/symfony/symfony25.php';
/**
* @var string
*/
final public const SYMFONY_26 = __DIR__ . '/../../config/sets/symfony/symfony26.php';
/**
* @var string
*/
final public const SYMFONY_27 = __DIR__ . '/../../config/sets/symfony/symfony27.php';
/**
* @var string
*/
final public const SYMFONY_28 = __DIR__ . '/../../config/sets/symfony/symfony28.php';
/**
* @var string
*/
final public const SYMFONY_30 = __DIR__ . '/../../config/sets/symfony/symfony30.php';
/**
* @var string
*/
final public const SYMFONY_31 = __DIR__ . '/../../config/sets/symfony/symfony31.php';
/**
* @var string
*/
final public const SYMFONY_32 = __DIR__ . '/../../config/sets/symfony/symfony32.php';
/**
* @var string
*/
final public const SYMFONY_33 = __DIR__ . '/../../config/sets/symfony/symfony33.php';
/**
* @var string
*/
final public const SYMFONY_34 = __DIR__ . '/../../config/sets/symfony/symfony34.php';
/**
* @var string
*/
final public const SYMFONY_40 = __DIR__ . '/../../config/sets/symfony/symfony40.php';
/**
* @var string
*/
final public const SYMFONY_41 = __DIR__ . '/../../config/sets/symfony/symfony41.php';
/**
* @var string
*/
final public const SYMFONY_42 = __DIR__ . '/../../config/sets/symfony/symfony42.php';
/**
* @var string
*/
final public const SYMFONY_43 = __DIR__ . '/../../config/sets/symfony/symfony43.php';
/**
* @var string
*/
final public const SYMFONY_44 = __DIR__ . '/../../config/sets/symfony/symfony44.php';
/**
* @var string
*/
final public const SYMFONY_50 = __DIR__ . '/../../config/sets/symfony/symfony50.php';
/**
* @var string
*/
final public const SYMFONY_50_TYPES = __DIR__ . '/../../config/sets/symfony/symfony50-types.php';
/**
* @var string
*/
final public const SYMFONY_51 = __DIR__ . '/../../config/sets/symfony/symfony51.php';
/**
* @var string
*/
final public const SYMFONY_52 = __DIR__ . '/../../config/sets/symfony/symfony52.php';
/**
* @var string
*/
final public const SYMFONY_53 = __DIR__ . '/../../config/sets/symfony/symfony53.php';
/**
* @var string
*/
final public const SYMFONY_54 = __DIR__ . '/../../config/sets/symfony/symfony54.php';
/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
* @var string
*/
final public const SYMFONY_52_VALIDATOR_ATTRIBUTES = __DIR__ . '/../../config/sets/symfony/symfony52-validator-attributes.php';
/**
* @var string
*/
final public const SYMFONY_60 = __DIR__ . '/../../config/sets/symfony/symfony60.php';
/**
* @var string
*/
final public const SYMFONY_61 = __DIR__ . '/../../config/sets/symfony/symfony61.php';
/**
* @var string
*/
final public const SYMFONY_62 = __DIR__ . '/../../config/sets/symfony/symfony62.php';
/**
* @var string
*/
final public const SYMFONY_63 = __DIR__ . '/../../config/sets/symfony/symfony63.php';
/**
* @var string
*/
final public const SYMFONY_64 = __DIR__ . '/../../config/sets/symfony/symfony64.php';
/**
* @var string
*/
final public const SYMFONY_70 = __DIR__ . '/../../config/sets/symfony/symfony70.php';
/**
* @var string
*/
final public const SYMFONY_71 = __DIR__ . '/../../config/sets/symfony/symfony71.php';
/**
* @var string
*/
final public const SYMFONY_72 = __DIR__ . '/../../config/sets/symfony/symfony72.php';
/**
* @var string
*/
final public const SYMFONY_CODE_QUALITY = __DIR__ . '/../../config/sets/symfony/symfony-code-quality.php';
/**
* @var string
*/
final public const SYMFONY_CONSTRUCTOR_INJECTION = __DIR__ . '/../../config/sets/symfony/symfony-constructor-injection.php';
/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
* @var string
*/
final public const ANNOTATIONS_TO_ATTRIBUTES = __DIR__ . '/../../config/sets/symfony/annotations-to-attributes.php';
}