From 89cf5e99fc5e00a4420422ca5f7de22d43085423 Mon Sep 17 00:00:00 2001 From: Ukko Kumpulainen Date: Wed, 12 Feb 2025 12:30:50 +0200 Subject: [PATCH] userId property annotation, from string to string|int|null --- src/Events/AccessTokenCreated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Events/AccessTokenCreated.php b/src/Events/AccessTokenCreated.php index bcaf0d650..48f7c7074 100644 --- a/src/Events/AccessTokenCreated.php +++ b/src/Events/AccessTokenCreated.php @@ -14,7 +14,7 @@ class AccessTokenCreated /** * The ID of the user associated with the token. * - * @var string + * @var string|int|null */ public $userId;