Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class Snapshot |
||
10 | { |
||
11 | /** |
||
12 | * @var AggregateRootId |
||
13 | */ |
||
14 | private $aggregateRootId; |
||
15 | |||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $aggregateRootVersion; |
||
20 | |||
21 | /** |
||
22 | * @var mixed |
||
23 | */ |
||
24 | private $state; |
||
25 | |||
26 | public function __construct( |
||
27 | AggregateRootId $aggregateRootId, |
||
28 | int $aggregateRootVersion, |
||
29 | $state |
||
30 | ) { |
||
31 | $this->aggregateRootId = $aggregateRootId; |
||
32 | $this->aggregateRootVersion = $aggregateRootVersion; |
||
33 | $this->state = $state; |
||
34 | } |
||
35 | |||
36 | public function aggregateRootId(): AggregateRootId |
||
39 | } |
||
40 | |||
41 | public function aggregateRootVersion(): int |
||
42 | { |
||
43 | return $this->aggregateRootVersion; |
||
44 | } |
||
45 | |||
46 | public function state() |
||
49 | } |
||
50 | } |
||
51 |