1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Gember\EventSourcing\EventStore; |
||
6 | |||
7 | use Stringable; |
||
8 | |||
9 | final readonly class StreamQuery |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
10 | { |
||
11 | /** |
||
12 | * @param list<string|Stringable> $domainIds |
||
13 | * @param list<class-string> $eventClassNames |
||
14 | */ |
||
15 | 12 | public function __construct( |
|
16 | public array $domainIds, |
||
17 | public array $eventClassNames = [], |
||
18 | 12 | ) {} |
|
19 | } |
||
20 |