You are here

public function AbstractProxy::isSessionHandlerInterface 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::isSessionHandlerInterface()

Is this proxy handler and instance of \SessionHandlerInterface.

Return value

bool

File

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

Class

AbstractProxy
AbstractProxy.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Proxy

Code

public function isSessionHandlerInterface() {
  return $this instanceof \SessionHandlerInterface;
}