. */ namespace SP\Domain\Common\Attributes; use Attribute; /** * Class Receiver */ #[Attribute(Attribute::TARGET_CLASS | Attribute::IS_REPEATABLE)] final readonly class EventReceiver { public function __construct(public string $eventName) { } }