/** * Session read handler. * Do not call this method directly. * @param string $id session ID * @return string the session data */ public function readSession($id) { if ($this->dbSession) { return $this->dbSession->readSession($id); } else { parent::readSession($id); } }