Skip to content
Snippets Groups Projects

AARC IDP HINT implemented

Closed Ghost User requested to merge github/fork/dBucik/aarc_idp_hinting into simplesamlphp-1.19.1
9 files
+ 1908
707
Compare changes
  • Side-by-side
  • Inline
Files
9
+ 31
0
<?php
namespace SimpleSAML\Auth;
use SAML2\AuthnRequest;
/**
* Class representing Authentication Request, aware of the AARC_IDP_HINT param
*
* @package SimpleSAMLphp\Auth
*/
class ExtendedAuthnRequest extends AuthnRequest
{
private $aarc_idp_hint = null;
/**
* @return null
*/
public function getAarcIdpHint()
{
return $this->aarc_idp_hint;
}
/**
* @param null $aarc_idp_hint
*/
public function setAarcIdpHint($aarc_idp_hint): void
{
$this->aarc_idp_hint = $aarc_idp_hint;
}
}
Loading