-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathOverrideDeprecatedMethodRule.php
88 lines (66 loc) · 1.69 KB
/
OverrideDeprecatedMethodRule.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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Deprecations;
use PhpParser\Node;
use PhpParser\Node\Stmt\ClassMethod;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
use function sprintf;
/**
* @implements Rule<ClassMethod>
*/
class OverrideDeprecatedMethodRule implements Rule
{
/** @var DeprecatedScopeHelper */
private $deprecatedScopeHelper;
public function __construct(DeprecatedScopeHelper $deprecatedScopeHelper)
{
$this->deprecatedScopeHelper = $deprecatedScopeHelper;
}
public function getNodeType(): string
{
return ClassMethod::class;
}
public function processNode(Node $node, Scope $scope): array
{
if ($this->deprecatedScopeHelper->isScopeDeprecated($scope)) {
return [];
}
if (!$scope->isInClass()) {
return [];
}
if ($node->isPrivate()) {
return [];
}
$class = $scope->getClassReflection();
$ancestors = $class->getAncestors();
$methodName = (string) $node->name;
$method = $class->getMethod($methodName, $scope);
if ($method->isDeprecated()->no()) {
return [];
}
foreach ($ancestors as $ancestor) {
if ($ancestor === $class) {
continue;
}
if ($ancestor->isTrait()) {
continue;
}
if (!$ancestor->hasMethod($methodName)) {
continue;
}
$ancestorMethod = $ancestor->getMethod($methodName, $scope);
if (!$ancestorMethod->isDeprecated()->yes()) {
return [];
}
return [RuleErrorBuilder::message(sprintf(
'Class %s overrides deprecated method %s of %s %s.',
$class->getName(),
$methodName,
$ancestor->isInterface() ? 'interface' : 'class',
$ancestor->getName()
))->identifier('method.deprecated')->build()];
}
return [];
}
}