Rapsys Git
/
userbundle
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b39dbe
)
Protect from getLocale call on empty request happening in console commands
author
Raphaël Gertz
<git@rapsys.eu>
Thu, 7 Mar 2024 17:07:52 +0000
(18:07 +0100)
committer
Raphaël Gertz
<git@rapsys.eu>
Thu, 7 Mar 2024 17:07:52 +0000
(18:07 +0100)
Factory.php
patch
|
blob
|
history
diff --git
a/Factory.php
b/Factory.php
index 3c5f3d63d23b94bc840198630f751288814eff78..e2d05d55cd97ff19d12bc2770b037601d12602c5 100644
(file)
--- a/
Factory.php
+++ b/
Factory.php
@@
-73,7
+73,7
@@
final class Factory implements RepositoryFactoryInterface {
//Set to current locale
//XXX: current request is not yet populated in constructor
- $this->locale = $this->request->getCurrentRequest()->getLocale() ?? $this->locale;
+ $this->locale = $this->request->getCurrentRequest()
?
->getLocale() ?? $this->locale;
//Return repository class instance
//XXX: router, slugger, translator and locale arguments will be ignored by default