Mercurial > hg > isophonics-drupal-site
diff vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php Mon Apr 23 09:33:26 2018 +0100 +++ b/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php Mon Apr 23 09:46:53 2018 +0100 @@ -12,22 +12,12 @@ namespace Symfony\Component\HttpFoundation\Session\Storage\Proxy; /** - * SessionHandler proxy. - * * @author Drak <drak@zikula.org> */ class SessionHandlerProxy extends AbstractProxy implements \SessionHandlerInterface { - /** - * @var \SessionHandlerInterface - */ protected $handler; - /** - * Constructor. - * - * @param \SessionHandlerInterface $handler - */ public function __construct(\SessionHandlerInterface $handler) { $this->handler = $handler; @@ -35,6 +25,14 @@ $this->saveHandlerName = $this->wrapper ? ini_get('session.save_handler') : 'user'; } + /** + * @return \SessionHandlerInterface + */ + public function getHandler() + { + return $this->handler; + } + // \SessionHandlerInterface /**