PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
NodeTypeResolver
/
PHPStan
/
Scope
/
NodeVisitor
<?php declare (strict_types=1); namespace Rector\NodeTypeResolver\PHPStan\Scope\NodeVisitor; use PhpParser\Node; use PhpParser\Node\Expr\ConstFetch; use PhpParser\Node\Expr\FuncCall; use PhpParser\Node\Expr\New_; use PhpParser\Node\Expr\StaticCall; use PhpParser\Node\Name; use PhpParser\NodeVisitorAbstract; use Rector\NodeTypeResolver\Node\AttributeKey; use Rector\NodeTypeResolver\PHPStan\Scope\Contract\NodeVisitor\ScopeResolverNodeVisitorInterface; final class NameNodeVisitor extends NodeVisitorAbstract implements ScopeResolverNodeVisitorInterface { public function enterNode(Node $node) : ?Node { if ($node instanceof FuncCall && $node->name instanceof Name) { $node->name->setAttribute(AttributeKey::IS_FUNCCALL_NAME, \true); return null; } if ($node instanceof ConstFetch) { $node->name->setAttribute(AttributeKey::IS_CONSTFETCH_NAME, \true); return null; } if ($node instanceof New_ && $node->class instanceof Name) { $node->class->setAttribute(AttributeKey::IS_NEW_INSTANCE_NAME, \true); return null; } if (!$node instanceof StaticCall) { return null; } if (!$node->class instanceof Name) { return null; } $node->class->setAttribute(AttributeKey::IS_STATICCALL_CLASS_NAME, \true); return null; } }
[-] ContextNodeVisitor.php
[edit]
[-] StaticVariableNodeVisitor.php
[edit]
[+]
..
[-] NameNodeVisitor.php
[edit]
[-] ByRefVariableNodeVisitor.php
[edit]
[-] GlobalVariableNodeVisitor.php
[edit]
[-] StmtKeyNodeVisitor.php
[edit]
[-] ByRefReturnNodeVisitor.php
[edit]
[-] ArgNodeVisitor.php
[edit]
[-] AssignedToNodeVisitor.php
[edit]