Jasny\SSO\Broker::getCookieName PHP Method

getCookieName() protected method

Note: Using the broker name in the cookie name. This resolves issues when multiple brokers are on the same domain.
protected getCookieName ( ) : string
return string
    protected function getCookieName()
    {
        return 'sso_token_' . preg_replace('/[_\\W]+/', '_', strtolower($this->broker));
    }