diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-25 13:06:27 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-25 13:06:27 +0200 |
commit | 57b2778053f46f8a2fd1f29d8634ffb7f109fcb6 (patch) | |
tree | 08a9557686f8f78b041294da85d88192b568eead | |
parent | bf73665a35470432ae939a70eb91ecf9f8933240 (diff) | |
parent | e91e36f8dfdcdf56bb7f3063f1337105cd9e51bc (diff) | |
download | nextcloud-server-57b2778053f46f8a2fd1f29d8634ffb7f109fcb6.tar.gz nextcloud-server-57b2778053f46f8a2fd1f29d8634ffb7f109fcb6.zip |
Merge pull request #19356 from owncloud/add-l10n-factory-to-interface
Add the L10N Factory to the container interface
-rw-r--r-- | lib/public/iservercontainer.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 8be23dff214..e37652c1adc 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -194,6 +194,12 @@ interface IServerContainer { public function getAppConfig(); /** + * @return \OCP\L10N\IFactory + * @since 8.2.0 + */ + public function getL10NFactory(); + + /** * get an L10N instance * @param string $app appid * @param string $lang |