D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
plesk
/
ratchetphp
/
src
/
Ratchet
/
Session
/
Storage
/
Proxy
/
Filename :
VirtualProxy.php
back
Copy
<?php namespace Ratchet\Session\Storage\Proxy; use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy; class VirtualProxy extends SessionHandlerProxy { /** * @var string */ protected $_sessionId; /** * @var string */ protected $_sessionName; /** * {@inheritdoc} */ public function __construct(\SessionHandlerInterface $handler) { parent::__construct($handler); $this->saveHandlerName = 'user'; $this->_sessionName = ini_get('session.name'); } /** * {@inheritdoc} */ public function getId() { return $this->_sessionId; } /** * {@inheritdoc} */ public function setId($id) { $this->_sessionId = $id; } /** * {@inheritdoc} */ public function getName() { return $this->_sessionName; } /** * DO NOT CALL THIS METHOD * @internal */ public function setName($name) { throw new \RuntimeException("Can not change session name in VirtualProxy"); } }