-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathAddOverrideAttributeToOverriddenMethodsRector.php
More file actions
403 lines (342 loc) · 11.7 KB
/
AddOverrideAttributeToOverriddenMethodsRector.php
File metadata and controls
403 lines (342 loc) · 11.7 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?php
declare(strict_types=1);
namespace Rector\Php83\Rector\ClassMethod;
use PhpParser\Node;
use PhpParser\Node\Attribute;
use PhpParser\Node\AttributeGroup;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\Throw_;
use PhpParser\Node\Name;
use PhpParser\Node\Name\FullyQualified;
use PhpParser\Node\Stmt;
use PhpParser\Node\Stmt\Class_;
use PhpParser\Node\Stmt\ClassLike;
use PhpParser\Node\Stmt\ClassMethod;
use PhpParser\Node\Stmt\Expression;
use PhpParser\Node\Stmt\Return_;
use PhpParser\Node\Stmt\Trait_;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\ReflectionProvider;
use Rector\Contract\Rector\ConfigurableRectorInterface;
use Rector\DeadCode\NodeAnalyzer\ParentClassAnalyzer;
use Rector\NodeAnalyzer\ClassAnalyzer;
use Rector\Php80\NodeAnalyzer\PhpAttributeAnalyzer;
use Rector\PhpParser\AstResolver;
use Rector\PhpParser\Node\Value\ValueResolver;
use Rector\Rector\AbstractRector;
use Rector\ValueObject\MethodName;
use Rector\ValueObject\PhpVersionFeature;
use Rector\VersionBonding\Contract\MinPhpVersionInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\ConfiguredCodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see https://wiki.php.net/rfc/marking_overriden_methods
*
* @see \Rector\Tests\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector\AddOverrideAttributeToOverriddenMethodsRectorTest
*/
final class AddOverrideAttributeToOverriddenMethodsRector extends AbstractRector implements MinPhpVersionInterface, ConfigurableRectorInterface
{
/**
* @api
*/
public const string ALLOW_OVERRIDE_EMPTY_METHOD = 'allow_override_empty_method';
/**
* @api
*/
public const string ADD_TO_INTERFACE_METHODS = 'add_to_interface_methods';
private const string OVERRIDE_CLASS = 'Override';
private bool $allowOverrideEmptyMethod = false;
private bool $addToInterfaceMethods = false;
private bool $hasChanged = false;
public function __construct(
private readonly ReflectionProvider $reflectionProvider,
private readonly ClassAnalyzer $classAnalyzer,
private readonly PhpAttributeAnalyzer $phpAttributeAnalyzer,
private readonly AstResolver $astResolver,
private readonly ValueResolver $valueResolver,
private readonly ParentClassAnalyzer $parentClassAnalyzer,
) {
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition(
'Add override attribute to overridden methods',
[
new ConfiguredCodeSample(
<<<'CODE_SAMPLE'
class ParentClass
{
public function foo()
{
echo 'default';
}
}
final class ChildClass extends ParentClass
{
public function foo()
{
echo 'override default';
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
class ParentClass
{
public function foo()
{
echo 'default';
}
}
final class ChildClass extends ParentClass
{
#[\Override]
public function foo()
{
echo 'override default';
}
}
CODE_SAMPLE
,
[
self::ALLOW_OVERRIDE_EMPTY_METHOD => false,
]
),
new ConfiguredCodeSample(
<<<'CODE_SAMPLE'
interface ParentInterface
{
public function foo();
}
final class ChildClass implements ParentInterface
{
public function foo()
{
echo 'implements interface';
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
interface ParentInterface
{
public function foo();
}
final class ChildClass implements ParentInterface
{
#[\Override]
public function foo()
{
echo 'implements interface';
}
}
CODE_SAMPLE
,
[
self::ADD_TO_INTERFACE_METHODS => true,
]
),
]
);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Class_::class];
}
/**
* @param array<string, mixed> $configuration
*/
public function configure(array $configuration): void
{
$this->allowOverrideEmptyMethod = $configuration[self::ALLOW_OVERRIDE_EMPTY_METHOD] ?? false;
$this->addToInterfaceMethods = $configuration[self::ADD_TO_INTERFACE_METHODS] ?? false;
}
/**
* @param Class_ $node
*/
public function refactor(Node $node): ?Node
{
$this->hasChanged = false;
if ($this->classAnalyzer->isAnonymousClass($node)) {
return null;
}
if ($this->shouldSkipNode($node)) {
return null;
}
$className = (string) $this->getName($node);
if (! $this->reflectionProvider->hasClass($className)) {
return null;
}
$classReflection = $this->reflectionProvider->getClass($className);
$parentClassReflections = $classReflection->getParents();
// interfaces are added for Stringable
if ($this->addToInterfaceMethods || $this->allowOverrideEmptyMethod) {
$parentClassReflections = array_merge($parentClassReflections, $classReflection->getInterfaces());
}
if ($this->allowOverrideEmptyMethod) {
// place on last to ensure verify method exists on parent early
// for non abstract method from trait
$parentClassReflections = array_merge($parentClassReflections, $classReflection->getTraits());
}
if ($parentClassReflections === []) {
return null;
}
foreach ($node->getMethods() as $classMethod) {
$this->processAddOverrideAttribute($classMethod, $parentClassReflections);
}
if (! $this->hasChanged) {
return null;
}
return $node;
}
public function provideMinPhpVersion(): int
{
return PhpVersionFeature::OVERRIDE_ATTRIBUTE;
}
/**
* @param ClassReflection[] $parentClassReflections
*/
private function processAddOverrideAttribute(ClassMethod $classMethod, array $parentClassReflections): void
{
if ($this->shouldSkipClassMethod($classMethod)) {
return;
}
/** @var string $classMethodName */
$classMethodName = $this->getName($classMethod->name);
// Private methods should be ignored
$shouldAddOverride = false;
foreach ($parentClassReflections as $parentClassReflection) {
if (! $parentClassReflection->hasNativeMethod($classMethod->name->toString())) {
continue;
}
// ignore if it is a private method on the parent
if (! $parentClassReflection->hasNativeMethod($classMethodName)) {
continue;
}
$parentMethod = $parentClassReflection->getNativeMethod($classMethodName);
if ($parentMethod->isPrivate()) {
break;
}
if ($this->shouldSkipParentClassMethod($parentClassReflection, $classMethod)) {
continue;
}
if ($parentClassReflection->isTrait() && ! $parentMethod->isAbstract()) {
break;
}
$shouldAddOverride = true;
break;
}
if ($shouldAddOverride) {
$classMethod->attrGroups[] = new AttributeGroup([new Attribute(new FullyQualified(self::OVERRIDE_CLASS))]);
$this->hasChanged = true;
}
}
private function shouldSkipClassMethod(ClassMethod $classMethod): bool
{
if ($this->isName($classMethod->name, MethodName::CONSTRUCT)) {
return true;
}
// nothing to override
if ($classMethod->isPrivate()) {
return true;
}
// ignore if it already uses the attribute
if ($this->phpAttributeAnalyzer->hasPhpAttribute($classMethod, self::OVERRIDE_CLASS)) {
return true;
}
// skip test setup method override, as rather clutters the code than helps
return $this->isNames($classMethod, ['setUp', 'tearDown']) && $this->parentClassAnalyzer->hasParentCall(
$classMethod
);
}
private function shouldSkipParentClassMethod(ClassReflection $parentClassReflection, ClassMethod $classMethod): bool
{
// special case for Stringable interface
if ($this->allowOverrideEmptyMethod && $parentClassReflection->getName() === 'Stringable') {
return false;
}
// if the method is on interface, skip based on the config flag
if ($parentClassReflection->isInterface()) {
return ! $this->addToInterfaceMethods;
}
// parse parent method, if it has some contents or not
$parentClass = $this->astResolver->resolveClassFromClassReflection($parentClassReflection);
if (! $parentClass instanceof ClassLike) {
return true;
}
$parentClassMethod = $parentClass->getMethod($classMethod->name->toString());
if (! $parentClassMethod instanceof ClassMethod) {
$parentClassMethod = $this->resolveClassMethodFromTraitUse($parentClass, $classMethod->name->toString());
}
if (! $parentClassMethod instanceof ClassMethod) {
return true;
}
if ($this->allowOverrideEmptyMethod) {
return false;
}
// just override abstract method also skipped on purpose
// only grand child of abstract method that parent has content will have
if ($parentClassMethod->isAbstract()) {
return true;
}
// has any stmts?
if ($parentClassMethod->stmts === null || $parentClassMethod->stmts === []) {
return true;
}
if (count($parentClassMethod->stmts) === 1) {
/** @var Stmt $soleStmt */
$soleStmt = $parentClassMethod->stmts[0];
// most likely, return null; is interface to be designed to override
if ($soleStmt instanceof Return_ && $soleStmt->expr instanceof Expr && $this->valueResolver->isNull(
$soleStmt->expr
)) {
return true;
}
if ($soleStmt instanceof Expression && $soleStmt->expr instanceof Throw_) {
return true;
}
}
return false;
}
private function resolveClassMethodFromTraitUse(ClassLike $classLike, string $methodName): ?ClassMethod
{
foreach ($classLike->getTraitUses() as $traitUse) {
foreach ($traitUse->traits as $traitName) {
$traitClass = $this->astResolver->resolveClassFromName($traitName->__toString());
if (! $traitClass instanceof Trait_) {
continue;
}
$traitClassMethod = $traitClass->getMethod($methodName);
if ($traitClassMethod instanceof ClassMethod) {
return $traitClassMethod;
}
}
}
return null;
}
// early return for the class if it does not extend anything
private function shouldSkipNode(Class_ $class): bool
{
if ($class->extends instanceof Name) {
return false;
}
if ($class->getTraitUses() !== []) {
return false;
}
if ($this->addToInterfaceMethods && $class->implements !== []) {
return false;
}
// add override to Stringable if flag is set
if ($this->allowOverrideEmptyMethod) {
foreach ($class->implements as $implement) {
if ($this->isName($implement, 'Stringable')) {
return false;
}
}
}
return true;
}
}