Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class InitiatorCommand |
||
7 | { |
||
8 | /** |
||
9 | * @var DummyAggregateRootId |
||
10 | */ |
||
11 | private $aggregateRootId; |
||
12 | |||
13 | 1 | public function __construct(DummyAggregateRootId $aggregateRootId) |
|
14 | { |
||
15 | 1 | $this->aggregateRootId = $aggregateRootId; |
|
16 | 1 | } |
|
17 | |||
18 | 1 | public function aggregateRootId(): DummyAggregateRootId |
|
21 | } |
||
22 | } |
||
23 |