From 799aeb8c9fc42763966d9d18789f88e96280f7b4 Mon Sep 17 00:00:00 2001 From: Kevin Hamilton Date: Thu, 16 Jan 2025 14:12:15 +0000 Subject: [PATCH] Move type back to `@var` Signed-off-by: Kevin Hamilton --- src/Config/SessionConfig.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Config/SessionConfig.php b/src/Config/SessionConfig.php index b223eebc..f8286f07 100644 --- a/src/Config/SessionConfig.php +++ b/src/Config/SessionConfig.php @@ -88,8 +88,10 @@ class SessionConfig extends StandardConfig * Name of the save handler currently in use. This will either be a PHP * built-in save handler name, or the name of a SessionHandlerInterface * class being used as a save handler. + * + * @var null|string|SaveHandlerInterface */ - protected null|string|SaveHandlerInterface $saveHandler = null; + protected $saveHandler; /** @var string session.serialize_handler */ protected $serializeHandler;