Add missing since annotations

This commit is contained in:
Lukas Reschke 2016-08-11 19:28:24 +02:00
parent 3dfdc8e311
commit 8f12f5df15
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
2 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,7 @@ interface IManager {
* returns a list of the admin sections * returns a list of the admin sections
* *
* @return array array of ISection[] where key is the priority * @return array array of ISection[] where key is the priority
* @since 9.1.0
*/ */
public function getAdminSections(); public function getAdminSections();
@ -60,6 +61,7 @@ interface IManager {
* *
* @param string $section the section id for which to load the settings * @param string $section the section id for which to load the settings
* @return array array of IAdmin[] where key is the priority * @return array array of IAdmin[] where key is the priority
* @since 9.1.0
*/ */
public function getAdminSettings($section); public function getAdminSettings($section);
} }

View File

@ -29,6 +29,7 @@ interface ISection {
* e.g. 'ldap' * e.g. 'ldap'
* *
* @returns string * @returns string
* @since 9.1
*/ */
public function getID(); public function getID();
@ -37,6 +38,7 @@ interface ISection {
* integration'. Use the L10N service to translate it. * integration'. Use the L10N service to translate it.
* *
* @return string * @return string
* @since 9.1
*/ */
public function getName(); public function getName();
@ -46,6 +48,7 @@ interface ISection {
* the priority values. It is required to return a value between 0 and 99. * the priority values. It is required to return a value between 0 and 99.
* *
* E.g.: 70 * E.g.: 70
* @since 9.1
*/ */
public function getPriority(); public function getPriority();
} }