public function SessionHandlerProxy::close

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php, line 57

Class

SessionHandlerProxy
SessionHandler proxy.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Proxy

Code

public function close() {
  $this->active = false;
  return (bool) $this->handler
    ->close();
}