| 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 $conflictingEvents) |
||
| 22 | { |
||
| 23 | $this->aggregateId = $aggregateId; |
||
| 24 | $this->conflictingEvents = $conflictingEvents; |
||
| 25 | parent::__construct('Unable to resolve conflict for stream '.$this->aggregateId); |
||
| 26 | } |
||
| 38 |