Example #1
0
 /**
  * Returns a value indicating whether to use custom session storage.
  * This method overrides the parent implementation and always returns true.
  * @return boolean whether to use custom storage.
  */
 public function getUseCustomStorage()
 {
     if ($this->dbSession) {
         return $this->dbSession->getUseCustomStorage();
     } else {
         parent::getUseCustomStorage();
     }
 }