From 600686c32b4d1d2640bb6823c24884fe63e09cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 19 Oct 2025 16:20:08 +0200 Subject: [PATCH] Fixed phpstan issue --- src/Exceptions/OAuthReconnectRequiredException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptions/OAuthReconnectRequiredException.php b/src/Exceptions/OAuthReconnectRequiredException.php index fabe605c..97abb19f 100644 --- a/src/Exceptions/OAuthReconnectRequiredException.php +++ b/src/Exceptions/OAuthReconnectRequiredException.php @@ -27,7 +27,7 @@ use Throwable; class OAuthReconnectRequiredException extends \RuntimeException { - private string $providerName; + private string $providerName = "unknown"; public function __construct(string $message = "You need to reconnect the OAuth connection for this provider!", int $code = 0, ?Throwable $previous = null) {