Example #1
0
 /**
  * Session destroy handler.
  * Do not call this method directly.
  * @param string $id session ID
  * @return boolean whether session is destroyed successfully
  */
 public function destroySession($id)
 {
     if ($this->dbSession) {
         return $this->dbSession->destroySession($id);
     } else {
         parent::destroySession($id);
     }
 }