Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | final class GenericAggregateRepository extends AbstractAggregateRepository |
||
26 | { |
||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $aggregateRootClass; |
||
31 | |||
32 | /** |
||
33 | * AbstractAggregateRepository constructor. |
||
34 | * |
||
35 | * @param string $aggregateRootClass |
||
36 | * @param EventStore $eventStore |
||
37 | * @param SnapshotStore|null $snapshotStore |
||
38 | */ |
||
39 | public function __construct( |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | protected function getStoreStream(Identity $aggregateId): StoreStream |
||
57 |