From dc817ceb45e8a023e1bf2dbf0a001118be43478c Mon Sep 17 00:00:00 2001 From: Alex Karajos Date: Sat, 20 Sep 2025 18:44:33 +0300 Subject: [PATCH] Update OAuthAccessToken.php Signed-off-by: Alex Karajos --- src/Core/src/Security/src/Entity/OAuthAccessToken.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/src/Security/src/Entity/OAuthAccessToken.php b/src/Core/src/Security/src/Entity/OAuthAccessToken.php index f70c9c9..efb6f28 100644 --- a/src/Core/src/Security/src/Entity/OAuthAccessToken.php +++ b/src/Core/src/Security/src/Entity/OAuthAccessToken.php @@ -36,7 +36,7 @@ class OAuthAccessToken implements AccessTokenEntityInterface private ClientEntityInterface $client; #[ORM\Column(name: 'user_id', type: 'string', length: 25, nullable: true)] - private ?string $userId; + private ?string $userId = null; /** @var non-empty-string $token */ #[ORM\Column(name: 'token', type: 'string', length: 100)]