GraphAware\Neo4j\Client\Formatter\RecordView::pathValue PHP 메소드

pathValue() 공개 메소드

public pathValue ( $key )
    public function pathValue($key)
    {
        if (!$this->hasValue($key) || !$this->value($key) instanceof Path) {
            throw new \InvalidArgumentException(sprintf('value for %s is not of type %s', $key, Path::class));
        }
        return $this->value($key);
    }