diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-26 11:03:41 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-26 11:03:41 +0200 |
commit | da5316265684561b9308d5cb190d4ad0352b7825 (patch) | |
tree | f2c530f45c5a99bff00ffad4e2946996490ebf3b /lib/public/Settings | |
parent | cfa5eea902afe138ec7c1115d90ff5ad543d9c9a (diff) | |
download | nextcloud-server-da5316265684561b9308d5cb190d4ad0352b7825.tar.gz nextcloud-server-da5316265684561b9308d5cb190d4ad0352b7825.zip |
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.php | 8 |
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); } |