Extends MemcachedSession class for >= PHP7.0 support.
authorAdam Bowling <abowling@emeralddata.net>
Tue, 2 Jan 2018 18:24:34 +0000 (13:24 -0500)
committerAdam Bowling <abowling@emeralddata.net>
Tue, 2 Jan 2018 18:24:34 +0000 (13:24 -0500)
Signed-off-by: Adam Bowling <abowling@emeralddata.net>
models/memcacheSession.class.php [new file with mode: 0644]

diff --git a/models/memcacheSession.class.php b/models/memcacheSession.class.php
new file mode 100644 (file)
index 0000000..0466f80
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+class MemcachedSession extends SessionHandler {
+    public function read($session_id) {
+        return (string)parent::read($session_id);
+    }
+}
+?>