From fb2b2f5c58cbdf07fe7e0683a3e9b6096e8b0497 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 18 Oct 2022 21:11:00 +0200 Subject: [PATCH] Remove unused Core\Session::create() method --- src/Core/Session.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Core/Session.php b/src/Core/Session.php index 7c4d2974d3..cc8ede5cad 100644 --- a/src/Core/Session.php +++ b/src/Core/Session.php @@ -34,11 +34,6 @@ class Session public static $exists = false; public static $expire = 180000; - public static function exists($name) - { - return DI::session()->exists($name); - } - public static function pop($name, $defaults = null) { return DI::session()->pop($name, $defaults); -- 2.39.5