Amp\Mysql\ResultSet::fetch PHP Méthode

fetch() public méthode

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