diff --git a/module/VuFind/src/VuFind/Session/AbstractBase.php b/module/VuFind/src/VuFind/Session/AbstractBase.php index 5be49732c37b3cc3a22a562c5d751be9bf400cee..7f64b848b916da16bdc9079856058a44f91de497 100644 --- a/module/VuFind/src/VuFind/Session/AbstractBase.php +++ b/module/VuFind/src/VuFind/Session/AbstractBase.php @@ -105,26 +105,6 @@ abstract class AbstractBase implements SaveHandlerInterface, return true; } - /** - * Read function must return string value always to make save handler work as - * expected. Return empty string if there is no data to read. - * - * @param string $sess_id The session ID to read - * - * @return string - */ - abstract public function read($sess_id); - - /** - * Write function that is called when session data is to be saved. - * - * @param string $sess_id The current session ID - * @param string $data The session data to write - * - * @return void - */ - abstract public function write($sess_id, $data); - /** * The destroy handler, this is executed when a session is destroyed with * session_destroy() and takes the session id as its only parameter.