Marcelgwerder\ApiHandler\Result::getResult PHP Метод

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

Return the query builder including the results
public getResult ( ) : Illuminate\Database\Query\Builder
Результат Illuminate\Database\Query\Builder $result
    public function getResult()
    {
        if ($this->parser->multiple) {
            $result = $this->parser->builder->get();
        } else {
            $result = $this->parser->builder->first();
        }
        return $result;
    }