diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-28 15:46:55 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-28 15:46:55 +0200 |
commit | 37b00b7443bec09aac84b359a1c2f77caf143b30 (patch) | |
tree | 5c34e150b8b2c5718ec2fda56af70f967a23a788 | |
parent | bd1215c1dd0955bc8c99a8d6d9005a6fd6bdc8aa (diff) | |
download | nextcloud-server-37b00b7443bec09aac84b359a1c2f77caf143b30.tar.gz nextcloud-server-37b00b7443bec09aac84b359a1c2f77caf143b30.zip |
Add since tag
-rw-r--r-- | lib/public/l10n/ifactory.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/public/l10n/ifactory.php b/lib/public/l10n/ifactory.php index e2dc1c313cc..b784505a68b 100644 --- a/lib/public/l10n/ifactory.php +++ b/lib/public/l10n/ifactory.php @@ -20,6 +20,9 @@ */ namespace OCP\L10N; +/** + * @since 8.2.0 + */ interface IFactory { /** * Get a language instance @@ -27,6 +30,7 @@ interface IFactory { * @param string $app * @param string|null $lang * @return \OCP\IL10N + * @since 8.2.0 */ public function get($app, $lang = null); } |