]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add missing since annotations
authorLukas Reschke <lukas@statuscode.ch>
Thu, 11 Aug 2016 17:28:24 +0000 (19:28 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Tue, 16 Aug 2016 19:09:22 +0000 (21:09 +0200)
lib/public/Settings/IManager.php
lib/public/Settings/ISection.php

index ba0d9da59a36afea41f00cc9c6f46e69f9762b7f..c0170c43bb8942dc532e4acc20ac38bc81c7781d 100644 (file)
@@ -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);
 }
index 7802c9b5d6cca540a97a0629de391a72d81fcb12..2905b087c326e8cb5052caf8da1edd7c68306cb1 100644 (file)
@@ -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();
 }