| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 5 | public function __construct(array $eventsArray, $aggregateClass, $aggregateId, int $sequence) |
|
| 28 | { |
||
| 29 | 5 | $this->version = count($eventsArray); |
|
| 30 | 5 | $this->aggregateClass = $aggregateClass; |
|
| 31 | 5 | $this->aggregateId = $aggregateId; |
|
| 32 | 5 | $this->eventsArray = $eventsArray; |
|
| 33 | 5 | $this->sequence = $sequence; |
|
| 34 | 5 | } |
|
| 35 | |||
| 51 |