/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Builder
NameSizeModeActions
ClassConst.php38750644editdlrm
Class_.php41710644editdlrm
Declaration.php12610644editdlrm
EnumCase.php20040644editdlrm
Enum_.php32580644editdlrm
FunctionLike.php18060644editdlrm
Function_.php16910644editdlrm
Interface_.php26280644editdlrm
Method.php37560644editdlrm
Namespace_.php10730644editdlrm
Param.php44660644editdlrm
Property.php57470644editdlrm
TraitUse.php16540644editdlrm
TraitUseAdaptation.php42660644editdlrm
Trait_.php23560644editdlrm
Use_.php12770644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Builder/Namespace_.php (1073B)
name = null !== $name ? BuilderHelpers::normalizeName($name) : null; } /** * Adds a statement. * * @param Node|PhpParser\Builder $stmt The statement to add * * @return $this The builder instance (for fluid interface) */ public function addStmt($stmt) { $this->stmts[] = BuilderHelpers::normalizeStmt($stmt); return $this; } /** * Returns the built node. * * @return Stmt\Namespace_ The built node */ public function getNode(): Node { return new Stmt\Namespace_($this->name, $this->stmts, $this->attributes); } }