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: Ternary.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr; use PhpParser\Node\Expr; class Ternary extends Expr { /** @var Expr Condition */ public Expr $cond; /** @var null|Expr Expression for true */ public ?Expr $if; /** @var Expr Expression for false */ public Expr $else; /** * Constructs a ternary operator node. * * @param Expr $cond Condition * @param null|Expr $if Expression for true * @param Expr $else Expression for false * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Expr $cond, ?Expr $if, Expr $else, array $attributes = []) { $this->attributes = $attributes; $this->cond = $cond; $this->if = $if; $this->else = $else; } public function getSubNodeNames(): array { return ['cond', 'if', 'else']; } public function getType(): string { return 'Expr_Ternary'; } }
Upload File
Create Folder