1 | <?php |
||
5 | class StatementIterator implements \IteratorAggregate |
||
6 | { |
||
7 | /** |
||
8 | * @var Statement |
||
9 | */ |
||
10 | private $statement; |
||
11 | |||
12 | /** |
||
13 | * @param Statement $statement |
||
14 | */ |
||
15 | 2 | public function __construct(Statement $statement) |
|
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 1 | public function getIterator() |
|
29 | } |
||
30 |