getAttribute() 공개 메소드

Returns the requested SAML attribute
public getAttribute ( string $name ) : array | null
$name string The requested attribute of the user.
리턴 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);
 }