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