Add missing return statement in Core\L10n

- Addresses https://github.com/friendica/friendica/issues/7998#issuecomment-569560492
This commit is contained in:
Hypolite Petovan
2019-12-29 22:47:32 -05:00
committed by GitHub
parent 6546e99e9e
commit 6f199ab7b3

View File

@@ -32,7 +32,7 @@ class L10n
*/ */
public static function withLang(string $lang) public static function withLang(string $lang)
{ {
DI::l10n()->withLang($lang); return DI::l10n()->withLang($lang);
} }
/** /**