statement = $statement; $this->statement->setFetchMode(PDO::FETCH_ASSOC); } /** * * Fetches next row from statement. * */ public function next() { $this->row = $this->statement->fetch(); $this->key ++; } }