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: Use_.php
<?php declare(strict_types=1); namespace PhpParser\Node\Stmt; use PhpParser\Node\Stmt; use PhpParser\Node\UseItem; class Use_ extends Stmt { /** * Unknown type. Both Stmt\Use_ / Stmt\GroupUse and Stmt\UseUse have a $type property, one of them will always be * TYPE_UNKNOWN while the other has one of the three other possible types. For normal use statements the type on the * Stmt\UseUse is unknown. It's only the other way around for mixed group use declarations. */ public const TYPE_UNKNOWN = 0; /** Class or namespace import */ public const TYPE_NORMAL = 1; /** Function import */ public const TYPE_FUNCTION = 2; /** Constant import */ public const TYPE_CONSTANT = 3; /** @var self::TYPE_* Type of alias */ public int $type; /** @var UseItem[] Aliases */ public array $uses; /** * Constructs an alias (use) list node. * * @param UseItem[] $uses Aliases * @param Stmt\Use_::TYPE_* $type Type of alias * @param array<string, mixed> $attributes Additional attributes */ public function __construct(array $uses, int $type = self::TYPE_NORMAL, array $attributes = []) { $this->attributes = $attributes; $this->type = $type; $this->uses = $uses; } public function getSubNodeNames(): array { return ['type', 'uses']; } public function getType(): string { return 'Stmt_Use'; } }
Upload File
Create Folder