Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2017-06-26 12:03:41 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2017-06-26 12:03:41 +0300
commitda5316265684561b9308d5cb190d4ad0352b7825 (patch)
treef2c530f45c5a99bff00ffad4e2946996490ebf3b /lib/public/Settings
parentcfa5eea902afe138ec7c1115d90ff5ad543d9c9a (diff)
We're on 13 now…
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/public/Settings')
-rw-r--r--lib/public/Settings/IManager.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/Settings/IManager.php b/lib/public/Settings/IManager.php
index 1242f835152..7a24eab3896 100644
--- a/lib/public/Settings/IManager.php
+++ b/lib/public/Settings/IManager.php
@@ -38,12 +38,12 @@ interface IManager {
const KEY_ADMIN_SECTION = 'admin-section';
/**
- * @since 12.0.0
+ * @since 13.0.0
*/
const KEY_PERSONAL_SETTINGS = 'personal';
/**
- * @since 12.0.0
+ * @since 13.0.0
*/
const KEY_PERSONAL_SECTION = 'personal-section';
@@ -101,7 +101,7 @@ interface IManager {
* returns a list of the personal sections
*
* @return array array of ISection[] where key is the priority
- * @since 12.0.0
+ * @since 13.0.0
*/
public function getPersonalSections();
@@ -119,7 +119,7 @@ interface IManager {
*
* @param string $section the section id for which to load the settings
* @return array array of IPersonal[] where key is the priority
- * @since 12.0.0
+ * @since 13.0.0
*/
public function getPersonalSettings($section);
}