From dd31632333694c6d1bcf40b5ea4790ae6e922590 Mon Sep 17 00:00:00 2001 From: David Lienhard Date: Tue, 16 Feb 2021 10:08:30 +0100 Subject: [PATCH] fix issue unsetting database propery database propery cannot be set to `null` --- src/SessionHandler.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SessionHandler.php b/src/SessionHandler.php index 165106b..93bfe9f 100644 --- a/src/SessionHandler.php +++ b/src/SessionHandler.php @@ -60,7 +60,6 @@ public function open($savePath, $sessionID) */ public function close() { - $this->db = null; return true; }