close() abstract public method

Close the backend.
abstract public close ( )
示例#1
0
 /**
  * Close the backend.
  *
  * @return boolean  True on success, false otherwise.
  */
 public function close()
 {
     try {
         $this->_storage->close();
     } catch (Horde_SessionHandler_Exception $e) {
         $this->_logger->log($e, 'ERR');
     }
     $this->_connected = false;
     return true;
 }