Skip to content
Snippets Groups Projects
Commit 0753a36a authored by Demian Katz's avatar Demian Katz
Browse files

Removed abstract methods already covered by interface.

- This fixes compatibility issues with early PHP 5.3.x versions.
parent 31aec897
No related merge requests found
...@@ -105,26 +105,6 @@ abstract class AbstractBase implements SaveHandlerInterface, ...@@ -105,26 +105,6 @@ abstract class AbstractBase implements SaveHandlerInterface,
return true; 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 * The destroy handler, this is executed when a session is destroyed with
* session_destroy() and takes the session id as its only parameter. * session_destroy() and takes the session id as its only parameter.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment