diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-09-10 11:17:03 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-09-10 11:17:03 +0200 |
commit | 7d158c62ce13bfe126aa96bf157fc890c2813fac (patch) | |
tree | bfb7628c4cc7e268b3c4161c7f30fa29b707f9ab /lib/private/L10N/Factory.php | |
parent | 01f2fef1f56020ff561eb938b1f511cb94590f08 (diff) | |
download | nextcloud-server-7d158c62ce13bfe126aa96bf157fc890c2813fac.tar.gz nextcloud-server-7d158c62ce13bfe126aa96bf157fc890c2813fac.zip |
Typehint
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/private/L10N/Factory.php')
-rw-r--r-- | lib/private/L10N/Factory.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/L10N/Factory.php b/lib/private/L10N/Factory.php index 1a7fff43229..1c56949c40d 100644 --- a/lib/private/L10N/Factory.php +++ b/lib/private/L10N/Factory.php @@ -251,7 +251,7 @@ class Factory implements IFactory { * @param string $locale * @return null|string */ - public function findLanguageFromLocale($app = 'core', $locale = null) { + public function findLanguageFromLocale(string $app = 'core', string $locale = null) { if ($this->languageExists($app, $locale)) { return $locale; } @@ -261,7 +261,6 @@ class Factory implements IFactory { if ($this->languageExists($app, $locale)) { return $locale; } - } /** |