/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt
NameSizeModeActions
TraitUseAdaptation/-0755rm
Block.php6460644editdlrm
Break_.php6980644editdlrm
Case_.php8690644editdlrm
Catch_.php11140644editdlrm
ClassConst.php21320644editdlrm
ClassLike.php30440644editdlrm
ClassMethod.php47160644editdlrm
Class_.php32150644editdlrm
Const_.php9670644editdlrm
Continue_.php7130644editdlrm
DeclareDeclare.php3330644editdlrm
Declare_.php9120644editdlrm
Do_.php8190644editdlrm
Echo_.php6590644editdlrm
ElseIf_.php8260644editdlrm
Else_.php6620644editdlrm
EnumCase.php11660644editdlrm
Enum_.php15780644editdlrm
Expression.php7260644editdlrm
Finally_.php6700644editdlrm
Foreach_.php17100644editdlrm
For_.php14350644editdlrm
Function_.php26720644editdlrm
Global_.php6780644editdlrm
Goto_.php7570644editdlrm
GroupUse.php10610644editdlrm
HaltCompiler.php7680644editdlrm
If_.php13920644editdlrm
InlineHTML.php6590644editdlrm
Interface_.php13250644editdlrm
Label.php7190644editdlrm
Namespace_.php9570644editdlrm
Nop.php2950644editdlrm
Property.php34260644editdlrm
PropertyProperty.php3390644editdlrm
Return_.php6790644editdlrm
StaticVar.php3050644editdlrm
Static_.php7210644editdlrm
Switch_.php8080644editdlrm
TraitUse.php8890644editdlrm
TraitUseAdaptation.php2930644editdlrm
Trait_.php10710644editdlrm
TryCatch.php10450644editdlrm
Unset_.php6700644editdlrm
UseUse.php3090644editdlrm
Use_.php14480644editdlrm
While_.php8220644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php (3426B)
$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'; } }