PhpParser\Node\Stmt\Property::isPublic PHP 메소드

isPublic() 공개 메소드

public isPublic ( )
    public function isPublic()
    {
        return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0 || ($this->flags & Class_::VISIBILITY_MODIFER_MASK) === 0;
    }

Usage Example

예제 #1
0
 /**
  * Is the property public?
  *
  * @return bool
  */
 public function isPublic()
 {
     return $this->node->isPublic();
 }
All Usage Examples Of PhpParser\Node\Stmt\Property::isPublic