Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
21 | public function __construct(AggregateIdInterface $aggregateId, DomainEventSequenceInterface $lostEvents) |
||
22 | { |
||
23 | $this->aggregateId = $aggregateId; |
||
24 | $this->lostEvents = $lostEvents; |
||
25 | parent::__construct('Unable to catchup on stream '.$this->aggregateId); |
||
26 | } |
||
38 |