Extends
lithium\core\Object
Clears all keys from the session.
Parameters
- array $options Options array. Not used for this adapter method.
Returns
closure Function that clears the sessionSource
public function clear(array $options = array()) {
$session =& $this->_session;
return function($self, $params) use (&$session) {
$session = array();
};
}