MODIFIER_PUBLIC: Type * 'byRef' => false : Whether to return by reference * 'params' => array() : Parameters * 'stmts' => array() : Statements * @param array $attributes Additional attributes */ public function __construct($name, array $subNodes = array(), array $attributes = array()) { parent::__construct( $subNodes + array( 'type' => Class_::MODIFIER_PUBLIC, 'byRef' => false, 'params' => array(), 'stmts' => array(), ), $attributes ); $this->name = $name; if ($this->type & Class_::MODIFIER_STATIC) { switch (strtolower($this->name)) { case '__construct': throw new Error(sprintf('Constructor %s() cannot be static', $this->name)); case '__destruct': throw new Error(sprintf('Destructor %s() cannot be static', $this->name)); case '__clone': throw new Error(sprintf('Clone method %s() cannot be static', $this->name)); } } } public function isPublic() { return (bool) ($this->type & Class_::MODIFIER_PUBLIC); } public function isProtected() { return (bool) ($this->type & Class_::MODIFIER_PROTECTED); } public function isPrivate() { return (bool) ($this->type & Class_::MODIFIER_PRIVATE); } public function isAbstract() { return (bool) ($this->type & Class_::MODIFIER_ABSTRACT); } public function isFinal() { return (bool) ($this->type & Class_::MODIFIER_FINAL); } public function isStatic() { return (bool) ($this->type & Class_::MODIFIER_STATIC); } }