Autarky\Http\SessionHandlerFactory::getSessionPath PHP 메소드

getSessionPath() 보호된 메소드

protected getSessionPath ( )
    protected function getSessionPath()
    {
        if ($this->config->has('path.session')) {
            return $this->config->get('path.session');
        }
        if ($this->config->has('path.storage')) {
            return $this->config->get('path.storage') . '/session';
        }
        return null;
    }