sspmod_saml_Auth_Source_SP::reauthLogout PHP Méthode

reauthLogout() public static méthode

This method will never return.
public static reauthLogout ( array $state )
$state array The state array.
    public static function reauthLogout(array $state)
    {
        SimpleSAML\Logger::debug('Proxy: logging the user out before re-authentication.');
        if (isset($state['Responder'])) {
            $state['saml:proxy:reauthLogout:PrevResponder'] = $state['Responder'];
        }
        $state['Responder'] = array('sspmod_saml_Auth_Source_SP', 'reauthPostLogout');
        $idp = SimpleSAML_IdP::getByState($state);
        $idp->handleLogoutRequest($state, null);
        assert('false');
    }