diff --git a/lib/public/l10n/ifactory.php b/lib/public/l10n/ifactory.php index e2dc1c313c..b784505a68 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); }