Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class StreamStrategy |
||
10 | { |
||
11 | public const DEFAULT_NAME = 'event_stream'; |
||
12 | |||
13 | /** |
||
14 | * @param mixed $aggregateId |
||
15 | */ |
||
16 | abstract public function computeName(string $aggregateClass, $aggregateId = null) : StreamName; |
||
17 | |||
18 | public static function resolveStreamStrategy(string $streamStrategyClass) : StreamStrategy |
||
23 |