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

Commit e6ead32

Browse files
committed
Merge branch '3.4' into 4.4
* 3.4: Fix more quotes in exception messages [3.4] Minor fixes [PropertyAccess] Improved errors when reading uninitialized properties
2 parents 87f5d4a + d58deff commit e6ead32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Core/User/UserInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* Regardless of how your users are loaded or where they come from (a database,
2525
* configuration, web service, etc.), you will have a class that implements
26-
* this interface. Objects that implement this interface are created and
26+
* this interface. Objects that implement this interface are created and
2727
* loaded by different objects that implement UserProviderInterface.
2828
*
2929
* @see UserProviderInterface

Guard/Firewall/GuardAuthenticationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private function triggerRememberMe(AuthenticatorInterface $guardAuthenticator, R
222222
}
223223

224224
if (!$response instanceof Response) {
225-
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)));
225+
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)));
226226
}
227227

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

0 commit comments

Comments
 (0)