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