/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
/
Stmt
/
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt
mkdir
upload
Name
Size
Mode
Actions
TraitUseAdaptation/
-
0755
rm
Block.php
646
0644
edit
dl
rm
Break_.php
698
0644
edit
dl
rm
Case_.php
869
0644
edit
dl
rm
Catch_.php
1114
0644
edit
dl
rm
ClassConst.php
2132
0644
edit
dl
rm
ClassLike.php
3044
0644
edit
dl
rm
ClassMethod.php
4716
0644
edit
dl
rm
Class_.php
3215
0644
edit
dl
rm
Const_.php
967
0644
edit
dl
rm
Continue_.php
713
0644
edit
dl
rm
DeclareDeclare.php
333
0644
edit
dl
rm
Declare_.php
912
0644
edit
dl
rm
Do_.php
819
0644
edit
dl
rm
Echo_.php
659
0644
edit
dl
rm
ElseIf_.php
826
0644
edit
dl
rm
Else_.php
662
0644
edit
dl
rm
EnumCase.php
1166
0644
edit
dl
rm
Enum_.php
1578
0644
edit
dl
rm
Expression.php
726
0644
edit
dl
rm
Finally_.php
670
0644
edit
dl
rm
Foreach_.php
1710
0644
edit
dl
rm
For_.php
1435
0644
edit
dl
rm
Function_.php
2672
0644
edit
dl
rm
Global_.php
678
0644
edit
dl
rm
Goto_.php
757
0644
edit
dl
rm
GroupUse.php
1061
0644
edit
dl
rm
HaltCompiler.php
768
0644
edit
dl
rm
If_.php
1392
0644
edit
dl
rm
InlineHTML.php
659
0644
edit
dl
rm
Interface_.php
1325
0644
edit
dl
rm
Label.php
719
0644
edit
dl
rm
Namespace_.php
957
0644
edit
dl
rm
Nop.php
295
0644
edit
dl
rm
Property.php
3426
0644
edit
dl
rm
PropertyProperty.php
339
0644
edit
dl
rm
Return_.php
679
0644
edit
dl
rm
StaticVar.php
305
0644
edit
dl
rm
Static_.php
721
0644
edit
dl
rm
Switch_.php
808
0644
edit
dl
rm
TraitUse.php
889
0644
edit
dl
rm
TraitUseAdaptation.php
293
0644
edit
dl
rm
Trait_.php
1071
0644
edit
dl
rm
TryCatch.php
1045
0644
edit
dl
rm
Unset_.php
670
0644
edit
dl
rm
UseUse.php
309
0644
edit
dl
rm
Use_.php
1448
0644
edit
dl
rm
While_.php
822
0644
edit
dl
rm
Edit:
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php
(3426B)
<?php declare(strict_types=1); namespace PhpParser\Node\Stmt; use PhpParser\Modifiers; use PhpParser\Node; use PhpParser\Node\ComplexType; use PhpParser\Node\Identifier; use PhpParser\Node\Name; use PhpParser\Node\PropertyItem; class Property extends Node\Stmt { /** @var int Modifiers */ public int $flags; /** @var PropertyItem[] Properties */ public array $props; /** @var null|Identifier|Name|ComplexType Type declaration */ public ?Node $type; /** @var Node\AttributeGroup[] PHP attribute groups */ public array $attrGroups; /** @var Node\PropertyHook[] Property hooks */ public array $hooks; /** * Constructs a class property list node. * * @param int $flags Modifiers * @param PropertyItem[] $props Properties * @param array<string, mixed> $attributes Additional attributes * @param null|Identifier|Name|ComplexType $type Type declaration * @param Node\AttributeGroup[] $attrGroups PHP attribute groups * @param Node\PropertyHook[] $hooks Property hooks */ public function __construct(int $flags, array $props, array $attributes = [], ?Node $type = null, array $attrGroups = [], array $hooks = []) { $this->attributes = $attributes; $this->flags = $flags; $this->props = $props; $this->type = $type; $this->attrGroups = $attrGroups; $this->hooks = $hooks; } public function getSubNodeNames(): array { return ['attrGroups', 'flags', 'type', 'props', 'hooks']; } /** * Whether the property is explicitly or implicitly public. */ public function isPublic(): bool { return ($this->flags & Modifiers::PUBLIC) !== 0 || ($this->flags & Modifiers::VISIBILITY_MASK) === 0; } /** * Whether the property is protected. */ public function isProtected(): bool { return (bool) ($this->flags & Modifiers::PROTECTED); } /** * Whether the property is private. */ public function isPrivate(): bool { return (bool) ($this->flags & Modifiers::PRIVATE); } /** * Whether the property is static. */ public function isStatic(): bool { return (bool) ($this->flags & Modifiers::STATIC); } /** * Whether the property is readonly. */ public function isReadonly(): bool { return (bool) ($this->flags & Modifiers::READONLY); } /** * Whether the property is abstract. */ public function isAbstract(): bool { return (bool) ($this->flags & Modifiers::ABSTRACT); } /** * Whether the property is final. */ public function isFinal(): bool { return (bool) ($this->flags & Modifiers::FINAL); } /** * Whether the property has explicit public(set) visibility. */ public function isPublicSet(): bool { return (bool) ($this->flags & Modifiers::PUBLIC_SET); } /** * Whether the property has explicit protected(set) visibility. */ public function isProtectedSet(): bool { return (bool) ($this->flags & Modifiers::PROTECTED_SET); } /** * Whether the property has explicit private(set) visibility. */ public function isPrivateSet(): bool { return (bool) ($this->flags & Modifiers::PRIVATE_SET); } public function getType(): string { return 'Stmt_Property'; } }
Save
cmd:
run