From 8f12f5df15158a463ac2d0e2b7350ad3ca871a1d Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 11 Aug 2016 19:28:24 +0200 Subject: [PATCH] Add missing since annotations --- lib/public/Settings/IManager.php | 2 ++ lib/public/Settings/ISection.php | 3 +++ 2 files changed, 5 insertions(+) diff --git a/lib/public/Settings/IManager.php b/lib/public/Settings/IManager.php index ba0d9da59a..c0170c43bb 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 7802c9b5d6..2905b087c3 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(); }