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