Pop\Db\Adapter\Sqlite::fetch PHP Метод

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

Return the results array from the results resource.
public fetch ( ) : array
Результат array
    public function fetch()
    {
        if (!isset($this->result)) {
            throw new Exception('Error: The database result resource is not currently set.');
        }
        return $this->result->fetchArray(SQLITE3_ASSOC);
    }