public function AbstractProxy::isSessionHandlerInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\ProxyCode
public function isSessionHandlerInterface() {
return $this instanceof \SessionHandlerInterface;
}