getAuthenticationProviderName() 공개 메소드

Returns the name of the authentication provider responsible for this token
public getAuthenticationProviderName ( ) : string
리턴 string The authentication provider name
 /**
  * @test
  */
 public function authenticationProviderNameCanBeSetAndRetrieved()
 {
     $this->token->setAuthenticationProviderName('My Cool Provider');
     $this->assertEquals('My Cool Provider', $this->token->getAuthenticationProviderName());
 }