Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class ReconstitutableAggregateRootFactory implements AggregateRootFactory |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $className; |
||
15 | |||
16 | 10 | public function __construct(string $className) |
|
19 | 10 | } |
|
20 | |||
21 | 8 | public function reconstituteFromEvents(AggregateRootId $aggregateRootId, Generator $events): AggregateRoot |
|
29 |