Amp\Mysql\ResultSet::fetchObject PHP Method

fetchObject() public method

public fetchObject ( )
    public function fetchObject()
    {
        return $this->genericFetch(function ($row) {
            return (object) array_combine(array_column($this->result->columns, "name"), $row);
        });
    }