SimpleSAML_IdP::authenticate PHP Méthode

authenticate() private méthode

This function authenticates the user.
private authenticate ( array &$state )
$state array
    private function authenticate(array &$state)
    {
        if (isset($state['isPassive']) && (bool) $state['isPassive']) {
            throw new SimpleSAML_Error_NoPassive('Passive authentication not supported.');
        }
        $this->authSource->login($state);
    }