$type, 'props' => $props, ), $attributes ); } public function isPublic() { return ($this->type & Class_::MODIFIER_PUBLIC) !== 0 || $this->type === 0; } public function isProtected() { return (bool) ($this->type & Class_::MODIFIER_PROTECTED); } public function isPrivate() { return (bool) ($this->type & Class_::MODIFIER_PRIVATE); } public function isStatic() { return (bool) ($this->type & Class_::MODIFIER_STATIC); } }