| 1 | <?php |
||
| 11 | class TimeMachine |
||
| 12 | { |
||
| 13 | protected $store; |
||
| 14 | |||
| 15 | protected $listeners = []; |
||
| 16 | |||
| 17 | public function __construct(EventStore $store) |
||
| 21 | |||
| 22 | public function attachListener($eventName, Listener $listener) |
||
| 26 | |||
| 27 | public function attachListeners(array $listeners) |
||
| 35 | |||
| 36 | public function replayEvents(Identity $identity, $offset = null, $max = null) |
||
| 58 | } |
||
| 59 |