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());
 }