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: List_.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr; use PhpParser\Node\ArrayItem; use PhpParser\Node\Expr; class List_ extends Expr { // For use in "kind" attribute public const KIND_LIST = 1; // list() syntax public const KIND_ARRAY = 2; // [] syntax /** @var (ArrayItem|null)[] List of items to assign to */ public array $items; /** * Constructs a list() destructuring node. * * @param (ArrayItem|null)[] $items List of items to assign to * @param array<string, mixed> $attributes Additional attributes */ public function __construct(array $items, array $attributes = []) { $this->attributes = $attributes; $this->items = $items; } public function getSubNodeNames(): array { return ['items']; } public function getType(): string { return 'Expr_List'; } }
Upload File
Create Folder