class Class_
Same name in this branch
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Class_.php \PhpParser\Node\Scalar\MagicConst\Class_
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Class_.php \PhpParser\Node\Stmt\Class_
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Builder/Class_.php \PhpParser\Builder\Class_
Abstract class for classes.
@author Marco Marchiò <marco.mm89@gmail.com>
Hierarchy
- class \Peast\Syntax\Node\Node implements \Peast\Syntax\Node\JSONSerializable
- class \Peast\Syntax\Node\Class_ extends \Peast\Syntax\Node\Node
Expanded class hierarchy of Class_
File
-
vendor/
mck89/ peast/ lib/ Peast/ Syntax/ Node/ Class_.php, line 17
Namespace
Peast\Syntax\NodeView source
abstract class Class_ extends Node {
/**
* Map of node properties
*
* @var array
*/
protected $propertiesMap = array(
"id" => true,
"superClass" => true,
"body" => true,
);
/**
* Class name
*
* @var Identifier
*/
protected $id;
/**
* Extended class
*
* @var Expression
*/
protected $superClass;
/**
* Class body
*
* @var ClassBody
*/
protected $body;
/**
* Returns class name
*
* @return Identifier
*/
public function getId() {
return $this->id;
}
/**
* Sets class name
*
* @param Identifier $id Class name
*
* @return $this
*/
public function setId($id) {
$this->assertType($id, "Identifier", true);
$this->id = $id;
return $this;
}
/**
* Returns extended class
*
* @return Expression
*/
public function getSuperClass() {
return $this->superClass;
}
/**
* Sets extended class
*
* @param Expression $superClass Extended class
*
* @return $this
*/
public function setSuperClass($superClass) {
$this->assertType($superClass, "Expression", true);
$this->superClass = $superClass;
return $this;
}
/**
* Returns class body
*
* @return ClassBody
*/
public function getBody() {
return $this->body;
}
/**
* Sets class body
*
* @param ClassBody $body Class body
*
* @return $this
*/
public function setBody($body) {
$this->assertType($body, "ClassBody");
$this->body = $body;
return $this;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Class_::$body | protected | property | Class body | ||
Class_::$id | protected | property | Class name | ||
Class_::$propertiesMap | protected | property | Map of node properties | Overrides Node::$propertiesMap | |
Class_::$superClass | protected | property | Extended class | ||
Class_::getBody | public | function | Returns class body | ||
Class_::getId | public | function | Returns class name | ||
Class_::getSuperClass | public | function | Returns extended class | ||
Class_::setBody | public | function | Sets class body | ||
Class_::setId | public | function | Sets class name | 1 | |
Class_::setSuperClass | public | function | Sets extended class | ||
Node::$leadingComments | protected | property | Leading comments array | ||
Node::$location | public | property | Node location in the source code | ||
Node::$trailingComments | protected | property | Trailing comments array | ||
Node::assertArrayOf | protected | function | Asserts that the given value is an array of defined type | ||
Node::assertType | protected | function | Asserts that the given value respects the defined type | ||
Node::getLeadingComments | public | function | Returns leading comments array | ||
Node::getLocation | public | function | Returns node location in the source code | ||
Node::getTrailingComments | public | function | Returns trailing comments array | ||
Node::getType | public | function | Returns node type | 2 | |
Node::jsonSerialize | public | function | Returns a serializable version of the node | 2 | |
Node::render | public | function | Renders the current node | ||
Node::setEndPosition | public | function | Sets the end position of the node in the source code | ||
Node::setLeadingComments | public | function | Sets leading comments array | 1 | |
Node::setStartPosition | public | function | Sets the start position of the node in the source code | ||
Node::setTrailingComments | public | function | Sets trailing comments array | 1 | |
Node::traverse | public | function | Traverses the current node and all its child nodes using the given function |
||
Node::typeError | protected | function | Throws an error if the defined type is not supported b | ||
Node::__construct | public | function | Class constructor |