From b3dcecf987ab18881b172fc1b9223e44f0d5b7d2 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 7 Aug 2020 22:49:48 -0400 Subject: [PATCH] Revert "Actually destroy session on logout" This reverts commit 077b57ecb38e7114539a54c0670a4930d434c276. --- src/Core/Session/Native.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Core/Session/Native.php b/src/Core/Session/Native.php index 83ed0f6e6e..49550a27c0 100644 --- a/src/Core/Session/Native.php +++ b/src/Core/Session/Native.php @@ -53,9 +53,4 @@ class Native extends AbstractSession implements ISession session_start(); return $this; } - - public function clear() - { - session_destroy(); - } }