X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fsymfony%2Fhttp-foundation%2FSession%2FStorage%2FProxy%2FSessionHandlerProxy.php;fp=vendor%2Fsymfony%2Fhttp-foundation%2FSession%2FStorage%2FProxy%2FSessionHandlerProxy.php;h=53c1209a1c07d1fdaeacd0932764175943bdd4b0;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=c5e97d415bbe22475b100a8e351c6436d89a8427;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php b/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php index c5e97d415..53c1209a1 100644 --- a/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php +++ b/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php @@ -12,22 +12,12 @@ namespace Symfony\Component\HttpFoundation\Session\Storage\Proxy; /** - * SessionHandler proxy. - * * @author Drak */ 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 @@ class SessionHandlerProxy extends AbstractProxy implements \SessionHandlerInterf $this->saveHandlerName = $this->wrapper ? ini_get('session.save_handler') : 'user'; } + /** + * @return \SessionHandlerInterface + */ + public function getHandler() + { + return $this->handler; + } + // \SessionHandlerInterface /**