public function AbstractProxy::isWrapper 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::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\ProxyCode
public function isWrapper() {
return $this->wrapper;
}