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