Autarky\Http\SessionHandlerFactory::getSessionPath PHP Method

getSessionPath() protected method

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;
    }