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