Exemple #1
0
 /**
  * {@inheritdoc}
  */
 public function read($sessionId)
 {
     try {
         return parent::read($sessionId);
     } catch (ConcurrentConnectionsExceededException $e) {
         require $this->filesystem->getDirectoryRead(DirectoryList::PUB)->getAbsolutePath('errors/503.php');
     }
 }
Exemple #2
0
 /**
  * Fetch session data
  *
  * @param string $sessionId
  * @return string
  */
 public function read($sessionId)
 {
     return $this->sessionHandler->read($sessionId);
 }