class ConcreteSessionHandlerInterfaceProxy

Hierarchy

  • class \Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy
    • class \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\ConcreteSessionHandlerInterfaceProxy implements \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\SessionHandlerInterface

Expanded class hierarchy of ConcreteSessionHandlerInterfaceProxy

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php, line 23

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy
View source
class ConcreteSessionHandlerInterfaceProxy extends AbstractProxy implements \SessionHandlerInterface {
  public function open($savePath, $sessionName) {
  }
  public function close() {
  }
  public function read($id) {
  }
  public function write($id, $data) {
  }
  public function destroy($id) {
  }
  public function gc($maxlifetime) {
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractProxy::$active protected property
AbstractProxy::$saveHandlerName protected property
AbstractProxy::$wrapper protected property Flag if handler wraps an internal PHP session handler (using \SessionHandler).
AbstractProxy::getId public function Gets the session ID.
AbstractProxy::getName public function Gets the session name.
AbstractProxy::getSaveHandlerName public function Gets the session.save_handler name.
AbstractProxy::isActive public function Has a session started?
AbstractProxy::isSessionHandlerInterface public function Is this proxy handler and instance of \SessionHandlerInterface.
AbstractProxy::isWrapper public function Returns true if this handler wraps an internal PHP session save handler using \SessionHandler. 1
AbstractProxy::setActive public function Sets the active flag.
AbstractProxy::setId public function Sets the session ID.
AbstractProxy::setName public function Sets the session name.
ConcreteSessionHandlerInterfaceProxy::close public function
ConcreteSessionHandlerInterfaceProxy::destroy public function
ConcreteSessionHandlerInterfaceProxy::gc public function
ConcreteSessionHandlerInterfaceProxy::open public function
ConcreteSessionHandlerInterfaceProxy::read public function
ConcreteSessionHandlerInterfaceProxy::write public function