You are here

public function AbstractProxy::isWrapper in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php \Symfony\Component\HttpFoundation\Session\Storage\Proxy\AbstractProxy::isWrapper()

Returns true if this handler wraps an internal PHP session save handler using \SessionHandler.

Return value

bool

1 method overrides AbstractProxy::isWrapper()
NativeProxy::isWrapper in vendor/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php
Returns true if this handler wraps an internal PHP session save handler using \SessionHandler.

File

vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php, line 63

Class

AbstractProxy
AbstractProxy.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Proxy

Code

public function isWrapper() {
  return $this->wrapper;
}