| 1 | <?php declare(strict_types = 1); |
||
| 9 | class MemoryTestRepository extends AggregateRepository implements MemoryTestRepositoryInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var TransactionalActionEventEmitterEventStore |
||
| 13 | */ |
||
| 14 | protected $eventStore; |
||
| 15 | |||
| 16 | public function save(TestAggregateRoot $testAggregateRoot): void |
||
| 22 | |||
| 23 | public function load(UuidInterface $uuid): TestAggregateRoot |
||
| 30 | } |
||
| 31 | |||
| 32 |