forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressionDependsOnThisHelper.php
More file actions
36 lines (26 loc) · 933 Bytes
/
ExpressionDependsOnThisHelper.php
File metadata and controls
36 lines (26 loc) · 933 Bytes
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
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Comparison;
use PhpParser\Node\Expr;
final class ExpressionDependsOnThisHelper
{
public static function isExpressionDependentOnThis(Expr $expr): bool
{
if ($expr instanceof Expr\Variable && $expr->name === 'this') {
return true;
}
if ($expr instanceof Expr\PropertyFetch || $expr instanceof Expr\NullsafePropertyFetch) {
return self::isExpressionDependentOnThis($expr->var);
}
if ($expr instanceof Expr\MethodCall || $expr instanceof Expr\NullsafeMethodCall) {
return self::isExpressionDependentOnThis($expr->var);
}
if ($expr instanceof Expr\StaticPropertyFetch || $expr instanceof Expr\StaticCall) {
if ($expr->class instanceof Expr) {
return self::isExpressionDependentOnThis($expr->class);
}
$className = $expr->class->toString();
return in_array($className, ['self', 'static', 'parent'], true);
}
return false;
}
}