10
10
use PHPStan \TrinaryLogic ;
11
11
use function array_key_exists ;
12
12
use function array_pop ;
13
+ use function count ;
13
14
use function implode ;
14
15
use function in_array ;
15
16
use function sprintf ;
17
+ use function str_contains ;
16
18
17
19
final class VariadicMethodsVisitor extends NodeVisitorAbstract
18
20
{
@@ -33,6 +35,8 @@ final class VariadicMethodsVisitor extends NodeVisitorAbstract
33
35
34
36
public const ATTRIBUTE_NAME = 'variadicMethods ' ;
35
37
38
+ private const ANONYMOUS_CLASS_PREFIX = 'class@anonymous ' ;
39
+
36
40
public function beforeTraverse (array $ nodes ): ?array
37
41
{
38
42
$ this ->topNode = null ;
@@ -57,7 +61,7 @@ public function enterNode(Node $node): ?Node
57
61
58
62
if ($ node instanceof Node \Stmt \ClassLike) {
59
63
if (!$ node ->name instanceof Node \Identifier) {
60
- $ className = sprintf ('class@anonymous :%s:%s ' , $ node ->getStartLine (), $ node ->getEndLine ());
64
+ $ className = sprintf ('%s :%s:%s ' , self :: ANONYMOUS_CLASS_PREFIX , $ node ->getStartLine (), $ node ->getEndLine ());
61
65
$ this ->classStack [] = $ className ;
62
66
$ this ->inClassLike = $ className ; // anonymous classes are in global namespace
63
67
} else {
@@ -105,7 +109,13 @@ public function leaveNode(Node $node): ?Node
105
109
array_pop ($ this ->classStack );
106
110
107
111
if ($ this ->classStack !== []) {
108
- $ this ->inClassLike = $ this ->inNamespace !== null ? $ this ->inNamespace . '\\' . implode ('\\' , $ this ->classStack ) : implode ('\\' , $ this ->classStack );
112
+ $ lastClass = $ this ->classStack [count ($ this ->classStack ) - 1 ];
113
+
114
+ if (str_contains ($ lastClass , self ::ANONYMOUS_CLASS_PREFIX )) {
115
+ $ this ->inClassLike = $ lastClass ;
116
+ } else {
117
+ $ this ->inClassLike = $ this ->inNamespace !== null ? $ this ->inNamespace . '\\' . implode ('\\' , $ this ->classStack ) : implode ('\\' , $ this ->classStack );
118
+ }
109
119
} else {
110
120
$ this ->inClassLike = null ;
111
121
}
0 commit comments