From 4cdfc3e75025e91e4f78bb549af6eb1fda054d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Brada?= Date: Thu, 1 Jan 2026 12:50:21 +0100 Subject: [PATCH] Fixed nullable type declaration for PHP 8.4 compatibility --- Console/Command/Disable2FA.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/Command/Disable2FA.php b/Console/Command/Disable2FA.php index df62c75..6c1d78f 100644 --- a/Console/Command/Disable2FA.php +++ b/Console/Command/Disable2FA.php @@ -35,7 +35,7 @@ class Disable2FA extends Command public function __construct( UserFactory $userFactory, UserResource $userResource, - string $name = null + ?string $name = null ) { $this->userFactory = $userFactory; $this->userResource = $userResource;