diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-11 19:28:24 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-11 19:28:24 +0200 |
commit | 8f12f5df15158a463ac2d0e2b7350ad3ca871a1d (patch) | |
tree | 7e3f419cb1b9e2de069ea466c139acf714dab7c2 /lib/public/Settings | |
parent | 3dfdc8e3117e9284e93631b73859e588fdfd0875 (diff) | |
download | nextcloud-server-8f12f5df15158a463ac2d0e2b7350ad3ca871a1d.tar.gz nextcloud-server-8f12f5df15158a463ac2d0e2b7350ad3ca871a1d.zip |
Add missing since annotations
Diffstat (limited to 'lib/public/Settings')
-rw-r--r-- | lib/public/Settings/IManager.php | 2 | ||||
-rw-r--r-- | lib/public/Settings/ISection.php | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/public/Settings/IManager.php b/lib/public/Settings/IManager.php index ba0d9da59a3..c0170c43bb8 100644 --- a/lib/public/Settings/IManager.php +++ b/lib/public/Settings/IManager.php @@ -52,6 +52,7 @@ interface IManager { * returns a list of the admin sections * * @return array array of ISection[] where key is the priority + * @since 9.1.0 */ public function getAdminSections(); @@ -60,6 +61,7 @@ interface IManager { * * @param string $section the section id for which to load the settings * @return array array of IAdmin[] where key is the priority + * @since 9.1.0 */ public function getAdminSettings($section); } diff --git a/lib/public/Settings/ISection.php b/lib/public/Settings/ISection.php index 7802c9b5d6c..2905b087c32 100644 --- a/lib/public/Settings/ISection.php +++ b/lib/public/Settings/ISection.php @@ -29,6 +29,7 @@ interface ISection { * e.g. 'ldap' * * @returns string + * @since 9.1 */ public function getID(); @@ -37,6 +38,7 @@ interface ISection { * integration'. Use the L10N service to translate it. * * @return string + * @since 9.1 */ public function getName(); @@ -46,6 +48,7 @@ interface ISection { * the priority values. It is required to return a value between 0 and 99. * * E.g.: 70 + * @since 9.1 */ public function getPriority(); } |