From: Raphaƫl Gertz Date: Thu, 7 Mar 2024 17:09:52 +0000 (+0100) Subject: Protect from getLocale call on empty request happening in console commands X-Git-Tag: 0.4.0~62 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/960ca2f13b12e3536180613df92599ebe71b7c67 Protect from getLocale call on empty request happening in console commands --- diff --git a/Factory.php b/Factory.php index 7ab9c2a..a421165 100644 --- a/Factory.php +++ b/Factory.php @@ -74,7 +74,7 @@ final class Factory implements RepositoryFactory { //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, languages and locale arguments will be ignored by default