-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathOverrideDeprecatedPropertyRule.php
79 lines (59 loc) · 1.56 KB
/
OverrideDeprecatedPropertyRule.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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Deprecations;
use PhpParser\Node;
use PhpParser\Node\Stmt\Property;
use PHPStan\Analyser\Scope;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleErrorBuilder;
use function sprintf;
/**
* @implements Rule<Property>
*/
class OverrideDeprecatedPropertyRule implements Rule
{
/** @var DeprecatedScopeHelper */
private $deprecatedScopeHelper;
public function __construct(DeprecatedScopeHelper $deprecatedScopeHelper)
{
$this->deprecatedScopeHelper = $deprecatedScopeHelper;
}
public function getNodeType(): string
{
return Property::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();
$parents = $class->getParents();
$propertyName = (string) $node->props[0]->name;
$property = $class->getProperty($propertyName, $scope);
if ($property->isDeprecated()->no()) {
return [];
}
foreach ($parents as $parent) {
if (!$parent->hasProperty($propertyName)) {
continue;
}
$parentProperty = $parent->getProperty($propertyName, $scope);
if (!$parentProperty->isDeprecated()->yes()) {
return [];
}
return [RuleErrorBuilder::message(sprintf(
'Class %s overrides deprecated property %s of class %s.',
$class->getName(),
$propertyName,
$parent->getName()
))->identifier('property.deprecated')->build()];
}
return [];
}
}