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