Bolt\Session\SessionListener::prependBasePathToCookie PHP Метод

prependBasePathToCookie() защищенный Метод

protected prependBasePathToCookie ( Request $request )
$request Symfony\Component\HttpFoundation\Request
    protected function prependBasePathToCookie(Request $request)
    {
        if (!($path = $this->options['cookie_path'])) {
            return;
        }
        $this->options['cookie_path'] = $request->getBasePath() . $path;
    }