Exakat\Loader\CypherG3::hasProperty PHP Method

hasProperty() public method

public hasProperty ( $name )
    public function hasProperty($name)
    {
        if ($this->isLink) {
            return isset(static::$lastLink[$name]);
        } else {
            return isset($this->node[$name]);
        }
    }