class Namespace_
Same name in this branch
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace_.php \PhpParser\Node\Scalar\MagicConst\Namespace_
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Namespace_.php \PhpParser\Node\Stmt\Namespace_
Hierarchy
- class \PhpParser\Builder\Declaration implements \PhpParser\Builder
- class \PhpParser\Builder\Namespace_ extends \PhpParser\Builder\Declaration
Expanded class hierarchy of Namespace_
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Builder/ Namespace_.php, line 10
Namespace
PhpParser\BuilderView source
class Namespace_ extends Declaration {
private ?Node\Name $name;
/** @var Stmt[] */
private array $stmts = [];
/**
* Creates a namespace builder.
*
* @param Node\Name|string|null $name Name of the namespace
*/
public function __construct($name) {
$this->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);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
Declaration::$attributes | protected | property | @var array<string, mixed> | |
Declaration::addStmts | public | function | Adds multiple statements. | |
Declaration::setDocComment | public | function | Sets doc comment for the declaration. | |
Namespace_::$name | private | property | ||
Namespace_::$stmts | private | property | @var Stmt[] | |
Namespace_::addStmt | public | function | Adds a statement. | Overrides Declaration::addStmt |
Namespace_::getNode | public | function | Returns the built node. | Overrides Builder::getNode |
Namespace_::__construct | public | function | Creates a namespace builder. |