Phan\Language\Element\AddressableElement::isPublic PHP Method

isPublic() public method

public isPublic ( ) : boolean
return boolean True if this is a public property
    public function isPublic() : bool
    {
        return !($this->isProtected() || $this->isPrivate());
    }