Nelmio\SecurityBundle\Session\CookieSessionHandler::open PHP Method

open() public method

public open ( $savePath, $sessionId )
    public function open($savePath, $sessionId)
    {
        if (!$this->request) {
            if ($this->logger) {
                $this->logger->crit('CookieSessionHandler::open - The Request object is missing');
            }
            throw new \RuntimeException('You cannot access the session without a Request object set');
        }
        if ($this->logger) {
            $this->logger->debug('CookieSessionHandler::open');
        }
        return true;
    }