1 | <?php |
||
8 | class IdentifiedEventStream extends EventStream |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $id; |
||
14 | |||
15 | /** |
||
16 | * @param string $id |
||
17 | * @param EventInterface[] $events |
||
18 | */ |
||
19 | 29 | public function __construct($id, $events) |
|
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | 8 | public function id() |
|
32 | } |
||
33 |