Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class PerformDummyTask implements DummyCommand |
||
13 | { |
||
14 | private DummyAggregateRootId $aggregateRootId; |
||
15 | |||
16 | public function __construct(DummyAggregateRootId $aggregateRootId) |
||
17 | { |
||
18 | $this->aggregateRootId = $aggregateRootId; |
||
19 | } |
||
20 | |||
21 | public function aggregateRootId(): DummyAggregateRootId |
||
24 | } |
||
25 | } |
||
26 |