SimpleSAML_IdP::reauthenticate PHP Méthode

reauthenticate() private méthode

This function re-authenticates an user with an existing session. This gives the authentication source a chance to do additional work when re-authenticating for SSO. Note: This function is not used when ForceAuthn=true.
private reauthenticate ( array &$state )
$state array
    private function reauthenticate(array &$state)
    {
        $sourceImpl = $this->authSource->getAuthSource();
        if ($sourceImpl === null) {
            throw new SimpleSAML_Error_Exception('No such auth source defined.');
        }
        $sourceImpl->reauthenticate($state);
    }