1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Gember\EventSourcing\UseCase\Attribute; |
||
6 | |||
7 | use Attribute; |
||
8 | |||
9 | #[Attribute(Attribute::TARGET_CLASS)] |
||
10 | final readonly class DomainEvent |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
11 | { |
||
12 | 18 | public function __construct( |
|
13 | public string $name, |
||
14 | 18 | ) {} |
|
15 | } |
||
16 |