From 7a4c0a16f83805919e53e0ca7536f571785c42f0 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Fri, 2 May 2025 13:05:52 +0100 Subject: [PATCH] fix: resolve access to uninitialised typed static property --- src/Passport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Passport.php b/src/Passport.php index 0a5fddf0..5f28200f 100644 --- a/src/Passport.php +++ b/src/Passport.php @@ -82,7 +82,7 @@ class Passport /** * The storage location of the encryption keys. */ - public static string $keyPath; + public static string|null $keyPath = null; /** * The access token entity class name.