supportsToken() 공개 메소드

Checks if the token is supported.
public supportsToken ( Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, string $providerKey ) : boolean
$token Symfony\Component\Security\Core\Authentication\Token\TokenInterface
$providerKey string
리턴 boolean
 /**
  * Tests the token support.
  */
 public function testSupportsToken()
 {
     $authenticator = new ContaoAuthenticator();
     $this->assertTrue($authenticator->supportsToken(new ContaoToken($this->mockUser()), 'frontend'));
     $this->assertTrue($authenticator->supportsToken(new AnonymousToken('anon.', 'foo'), 'frontend'));
     $this->assertFalse($authenticator->supportsToken(new PreAuthenticatedToken('foo', 'bar', 'console'), 'console'));
 }