mirror of
https://github.com/friendica/friendica
synced 2024-11-10 23:02:55 +00:00
Add missing return statement in Core\L10n
- Addresses https://github.com/friendica/friendica/issues/7998#issuecomment-569560492
This commit is contained in:
parent
6546e99e9e
commit
6f199ab7b3
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue