GraphAware\Neo4j\Client\Formatter\Response::getResult PHP Метод

getResult() публичный Метод

public getResult ( ) : Result
Результат Result
    public function getResult()
    {
        if (null !== $this->results && !$this->results instanceof Result) {
            reset($this->results);
            return $this->results[0];
        }
        return $this->results;
    }