Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit d58deff

Browse files
committed
Fix more quotes in exception messages
1 parent c734b51 commit d58deff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Guard/Firewall/GuardAuthenticationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ private function triggerRememberMe(GuardAuthenticatorInterface $guardAuthenticat
221221
}
222222

223223
if (!$response instanceof Response) {
224-
throw new \LogicException(sprintf('%s::onAuthenticationSuccess *must* return a Response if you want to use the remember me functionality. Return a Response, or set remember_me to false under the guard configuration.', \get_class($guardAuthenticator)));
224+
throw new \LogicException(sprintf('"%s::onAuthenticationSuccess()" *must* return a Response if you want to use the remember me functionality. Return a Response, or set remember_me to false under the guard configuration.', \get_class($guardAuthenticator)));
225225
}
226226

227227
$this->rememberMeServices->loginSuccess($request, $response, $token);

0 commit comments

Comments
 (0)