| 1 | <?php |
||
| 16 | class SimpleDomainEventStream implements DomainEventStreamInterface |
||
| 17 | { |
||
| 18 | |||
| 19 | private $events; |
||
| 20 | private $nextIndex; |
||
| 21 | |||
| 22 | 37 | public function __construct(array $events = array()) |
|
| 27 | |||
| 28 | 38 | public function hasNext() |
|
| 32 | |||
| 33 | 37 | public function next() |
|
| 41 | |||
| 42 | 15 | public function peek() |
|
| 50 | |||
| 51 | public static function emptyStream() |
||
| 55 | |||
| 56 | } |
||
| 57 |