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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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