Skip to content

Commit d8796c4

Browse files
committed
fix return types after merge
1 parent bf63a33 commit d8796c4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Debug/Authenticator/TraceableAuthenticator.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ public function createToken(Passport $passport, string $firewallName): TokenInte
6868
return method_exists($this->authenticator, 'createToken') ? $this->authenticator->createToken($passport, $firewallName) : $this->authenticator->createAuthenticatedToken($passport, $firewallName);
6969
}
7070

71-
public function createAuthenticatedToken(PassportInterface $passport, string $firewallName): TokenInterface
72-
{
73-
return $this->authenticator->createAuthenticatedToken($passport, $firewallName);
74-
}
75-
7671
public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
7772
{
7873
return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);

0 commit comments

Comments
 (0)