1 | <?php declare(strict_types = 1); |
||
10 | class EventSourcingConfigurator extends DefaultConfigurator |
||
11 | { |
||
12 | public const KEY = 'event_sourcing'; |
||
13 | public const KEY_AGGREGATE_REPOSITORIES = 'aggregate_repository'; |
||
14 | public const KEY_REPOSITORY_CLASS = 'repository_class'; |
||
15 | |||
16 | 16 | public function buildDefaultConfig(): array |
|
22 | |||
23 | 16 | public function getConfigKey(): string |
|
27 | |||
28 | 14 | public function configureWithConfig(array $config): void |
|
49 | } |
||
50 |