golden hour
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Expr
⬆️ Go Up
Upload
File/Folder
Size
Actions
ArrayDimFetch.php
822 B
Del
OK
ArrayItem.php
305 B
Del
OK
Array_.php
831 B
Del
OK
ArrowFunction.php
2.49 KB
Del
OK
Assign.php
774 B
Del
OK
AssignOp
-
Del
OK
AssignOp.php
726 B
Del
OK
AssignRef.php
823 B
Del
OK
BinaryOp
-
Del
OK
BinaryOp.php
1.07 KB
Del
OK
BitwiseNot.php
652 B
Del
OK
BooleanNot.php
652 B
Del
OK
CallLike.php
1.76 KB
Del
OK
Cast
-
Del
OK
Cast.php
567 B
Del
OK
ClassConstFetch.php
986 B
Del
OK
Clone_.php
637 B
Del
OK
Closure.php
2.77 KB
Del
OK
ClosureUse.php
309 B
Del
OK
ConstFetch.php
683 B
Del
OK
Empty_.php
640 B
Del
OK
Error.php
757 B
Del
OK
ErrorSuppress.php
662 B
Del
OK
Eval_.php
637 B
Del
OK
Exit_.php
758 B
Del
OK
FuncCall.php
994 B
Del
OK
Include_.php
951 B
Del
OK
Instanceof_.php
860 B
Del
OK
Isset_.php
642 B
Del
OK
List_.php
879 B
Del
OK
Match_.php
782 B
Del
OK
MethodCall.php
1.25 KB
Del
OK
New_.php
1.08 KB
Del
OK
NullsafeMethodCall.php
1.27 KB
Del
OK
NullsafePropertyFetch.php
971 B
Del
OK
PostDec.php
639 B
Del
OK
PostInc.php
639 B
Del
OK
PreDec.php
636 B
Del
OK
PreInc.php
636 B
Del
OK
Print_.php
640 B
Del
OK
PropertyFetch.php
945 B
Del
OK
ShellExec.php
795 B
Del
OK
StaticCall.php
1.26 KB
Del
OK
StaticPropertyFetch.php
1014 B
Del
OK
Ternary.php
967 B
Del
OK
Throw_.php
668 B
Del
OK
UnaryMinus.php
652 B
Del
OK
UnaryPlus.php
649 B
Del
OK
Variable.php
637 B
Del
OK
YieldFrom.php
666 B
Del
OK
Yield_.php
846 B
Del
OK
Edit: ClassConstFetch.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr; use PhpParser\Node; use PhpParser\Node\Expr; use PhpParser\Node\Identifier; use PhpParser\Node\Name; class ClassConstFetch extends Expr { /** @var Name|Expr Class name */ public Node $class; /** @var Identifier|Expr|Error Constant name */ public Node $name; /** * Constructs a class const fetch node. * * @param Name|Expr $class Class name * @param string|Identifier|Expr|Error $name Constant name * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Node $class, $name, array $attributes = []) { $this->attributes = $attributes; $this->class = $class; $this->name = \is_string($name) ? new Identifier($name) : $name; } public function getSubNodeNames(): array { return ['class', 'name']; } public function getType(): string { return 'Expr_ClassConstFetch'; } }
Save