getAttribute() public method

Returns the requested SAML attribute
public getAttribute ( string $name ) : array | null
$name string The requested attribute of the user.
return array | null Requested SAML attribute ($name).
コード例 #1
0
ファイル: Saml.php プロジェクト: asasmoyo/yii2-saml
 /**
  * Call the getAttribute method on OneLogin_Saml2_Auth.
  */
 public function getAttribute($name)
 {
     return $this->instance->getAttribute($name);
 }