| 1 | <?php |
||
| 15 | final class UnresolvableConflict extends Exception |
||
| 16 | { |
||
| 17 | /** @var StreamId */ |
||
| 18 | private $streamId; |
||
| 19 | |||
| 20 | /** @var array */ |
||
| 21 | private $conflictingEvents; |
||
| 22 | |||
| 23 | public function __construct(StreamId $streamId, array $conflictingEvents) |
||
| 29 | |||
| 30 | public function getStreamId(): StreamId |
||
| 34 | |||
| 35 | public function getConflictingEvents(): array |
||
| 39 | } |
||
| 40 |