X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt
home
/
prisjneg
/
public_html
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Stmt
/
📁
..
📄
Block.php
(646 B)
📄
Break_.php
(698 B)
📄
Case_.php
(869 B)
📄
Catch_.php
(1.09 KB)
📄
ClassConst.php
(2.08 KB)
📄
ClassLike.php
(2.97 KB)
📄
ClassMethod.php
(4.61 KB)
📄
Class_.php
(3.14 KB)
📄
Const_.php
(967 B)
📄
Continue_.php
(713 B)
📄
DeclareDeclare.php
(250 B)
📄
Declare_.php
(912 B)
📄
Do_.php
(819 B)
📄
Echo_.php
(659 B)
📄
ElseIf_.php
(826 B)
📄
Else_.php
(662 B)
📄
EnumCase.php
(1.14 KB)
📄
Enum_.php
(1.54 KB)
📄
Expression.php
(726 B)
📄
Finally_.php
(670 B)
📄
For_.php
(1.4 KB)
📄
Foreach_.php
(1.67 KB)
📄
Function_.php
(2.61 KB)
📄
Global_.php
(678 B)
📄
Goto_.php
(757 B)
📄
GroupUse.php
(1.04 KB)
📄
HaltCompiler.php
(768 B)
📄
If_.php
(1.36 KB)
📄
InlineHTML.php
(659 B)
📄
Interface_.php
(1.29 KB)
📄
Label.php
(719 B)
📄
Namespace_.php
(957 B)
📄
Nop.php
(295 B)
📄
Property.php
(3.35 KB)
📄
PropertyProperty.php
(255 B)
📄
Return_.php
(679 B)
📄
StaticVar.php
(224 B)
📄
Static_.php
(721 B)
📄
Switch_.php
(808 B)
📄
TraitUse.php
(889 B)
📁
TraitUseAdaptation
📄
TraitUseAdaptation.php
(293 B)
📄
Trait_.php
(1.05 KB)
📄
TryCatch.php
(1.02 KB)
📄
Unset_.php
(670 B)
📄
UseUse.php
(230 B)
📄
Use_.php
(1.41 KB)
📄
While_.php
(822 B)
Editing: ElseIf_.php
<?php declare(strict_types=1); namespace PhpParser\Node\Stmt; use PhpParser\Node; class ElseIf_ extends Node\Stmt { /** @var Node\Expr Condition */ public Node\Expr $cond; /** @var Node\Stmt[] Statements */ public array $stmts; /** * Constructs an elseif node. * * @param Node\Expr $cond Condition * @param Node\Stmt[] $stmts Statements * @param array<string, mixed> $attributes Additional attributes */ public function __construct(Node\Expr $cond, array $stmts = [], array $attributes = []) { $this->attributes = $attributes; $this->cond = $cond; $this->stmts = $stmts; } public function getSubNodeNames(): array { return ['cond', 'stmts']; } public function getType(): string { return 'Stmt_ElseIf'; } }
Upload File
Create Folder