You are here

class SamlSPAuthnRequest in SAML Service Provider 3.x

Same name and namespace in other branches
  1. 8.3 src/SAML/SamlSPAuthnRequest.php \Drupal\saml_sp\SAML\SamlSPAuthnRequest
  2. 8.2 src/SAML/SamlSPAuthnRequest.php \Drupal\saml_sp\SAML\SamlSPAuthnRequest
  3. 4.x src/SAML/SamlSPAuthnRequest.php \Drupal\saml_sp\SAML\SamlSPAuthnRequest

Constructs the authentication request.

Hierarchy

Expanded class hierarchy of SamlSPAuthnRequest

File

src/SAML/SamlSPAuthnRequest.php, line 11

Namespace

Drupal\saml_sp\SAML
View source
class SamlSPAuthnRequest extends AuthnRequest {

  /**
   * {@inheritdoc}
   */
  public function __construct(Settings $settings, $forceAuthn = FALSE, $isPassive = FALSE, $setNameIdPolicy = TRUE, $nameIdValueReq = NULL) {
    parent::__construct($settings, $forceAuthn, $isPassive, $setNameIdPolicy, $nameIdValueReq);
    if (\Drupal::config('saml_sp.settings')
      ->get('debug')) {
      _saml_sp__debug('samlp:AuthnRequest', $this);
    }
  }

}

Members