Esempio n. 1
0
 /**
  * @param ConfigInterface $config
  * @param LoggerInterface $logger
  * @param Filesystem $filesystem
  * @throws SessionException
  */
 public function __construct(ConfigInterface $config, LoggerInterface $logger, Filesystem $filesystem)
 {
     $this->filesystem = $filesystem;
     try {
         parent::__construct($config, $logger);
     } catch (ConnectionFailedException $e) {
         throw new SessionException(new Phrase($e->getMessage()));
     }
 }