statement = $statement; } /** * {@inheritdoc} */ public function getIterator() { while (($result = $this->statement->fetch()) !== false) { yield $result; } } }