/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/ClassMethod.php (4716B)
*/ private static array $magicNames = [ '__construct' => true, '__destruct' => true, '__call' => true, '__callstatic' => true, '__get' => true, '__set' => true, '__isset' => true, '__unset' => true, '__sleep' => true, '__wakeup' => true, '__tostring' => true, '__set_state' => true, '__clone' => true, '__invoke' => true, '__debuginfo' => true, '__serialize' => true, '__unserialize' => true, ]; /** * Constructs a class method node. * * @param string|Node\Identifier $name Name * @param array{ * flags?: int, * byRef?: bool, * params?: Node\Param[], * returnType?: null|Node\Identifier|Node\Name|Node\ComplexType, * stmts?: Node\Stmt[]|null, * attrGroups?: Node\AttributeGroup[], * } $subNodes Array of the following optional subnodes: * 'flags => 0 : Flags * 'byRef' => false : Whether to return by reference * 'params' => array() : Parameters * 'returnType' => null : Return type * 'stmts' => array() : Statements * 'attrGroups' => array() : PHP attribute groups * @param array $attributes Additional attributes */ public function __construct($name, array $subNodes = [], array $attributes = []) { $this->attributes = $attributes; $this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0; $this->byRef = $subNodes['byRef'] ?? false; $this->name = \is_string($name) ? new Node\Identifier($name) : $name; $this->params = $subNodes['params'] ?? []; $this->returnType = $subNodes['returnType'] ?? null; $this->stmts = array_key_exists('stmts', $subNodes) ? $subNodes['stmts'] : []; $this->attrGroups = $subNodes['attrGroups'] ?? []; } public function getSubNodeNames(): array { return ['attrGroups', 'flags', 'byRef', 'name', 'params', 'returnType', 'stmts']; } public function returnsByRef(): bool { return $this->byRef; } public function getParams(): array { return $this->params; } public function getReturnType() { return $this->returnType; } public function getStmts(): ?array { return $this->stmts; } public function getAttrGroups(): array { return $this->attrGroups; } /** * Whether the method is explicitly or implicitly public. */ public function isPublic(): bool { return ($this->flags & Modifiers::PUBLIC) !== 0 || ($this->flags & Modifiers::VISIBILITY_MASK) === 0; } /** * Whether the method is protected. */ public function isProtected(): bool { return (bool) ($this->flags & Modifiers::PROTECTED); } /** * Whether the method is private. */ public function isPrivate(): bool { return (bool) ($this->flags & Modifiers::PRIVATE); } /** * Whether the method is abstract. */ public function isAbstract(): bool { return (bool) ($this->flags & Modifiers::ABSTRACT); } /** * Whether the method is final. */ public function isFinal(): bool { return (bool) ($this->flags & Modifiers::FINAL); } /** * Whether the method is static. */ public function isStatic(): bool { return (bool) ($this->flags & Modifiers::STATIC); } /** * Whether the method is magic. */ public function isMagic(): bool { return isset(self::$magicNames[$this->name->toLowerString()]); } public function getType(): string { return 'Stmt_ClassMethod'; } }