public function SessionHandlerProxy::open

File

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

Class

SessionHandlerProxy
SessionHandler proxy.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Proxy

Code

public function open($savePath, $sessionName) {
  $return = (bool) $this->handler
    ->open($savePath, $sessionName);
  if (true === $return) {
    $this->active = true;
  }
  return $return;
}