Add since tag

This commit is contained in:
Joas Schilling 2015-08-28 15:46:55 +02:00
parent bd1215c1dd
commit 37b00b7443
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}