File tree 1 file changed +12
-7
lines changed
lib/Doctrine/Common/Annotations
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -139,16 +139,21 @@ final class ImplicitlyIgnoredAnnotationNames
139
139
140
140
private const SlevomatCodingStandard = ['phpcsSuppress ' => true ];
141
141
142
- private const PhpStan = [
142
+ private const Phan = ['suppress ' => true ];
143
+
144
+ private const Rector = ['noRector ' => true ];
145
+
146
+ private const StaticAnalysis = [
147
+ // PHPStan, Psalm
143
148
'extends ' => true ,
144
149
'implements ' => true ,
145
150
'template ' => true ,
146
151
'use ' => true ,
147
- ];
148
152
149
- private const Phan = ['suppress ' => true ];
150
-
151
- private const Rector = ['noRector ' => true ];
153
+ // Psalm
154
+ 'pure ' => true ,
155
+ 'immutable ' => true ,
156
+ ];
152
157
153
158
public const LIST = self ::Reserved
154
159
+ self ::WidelyUsedNonStandard
@@ -162,9 +167,9 @@ final class ImplicitlyIgnoredAnnotationNames
162
167
+ self ::Symfony
163
168
+ self ::SlevomatCodingStandard
164
169
+ self ::PhpCodeSniffer
165
- + self ::PhpStan
166
170
+ self ::Phan
167
- + self ::Rector;
171
+ + self ::Rector
172
+ + self ::StaticAnalysis;
168
173
169
174
private function __construct ()
170
175
{
You can’t perform that action at this time.
0 commit comments