From da5316265684561b9308d5cb190d4ad0352b7825 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 26 Jun 2017 11:03:41 +0200 Subject: [PATCH] =?UTF-8?q?We're=20on=2013=20now=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Arthur Schiwon --- apps/encryption/lib/Settings/PersonalSection.php | 2 +- .../federatedfilesharing/lib/Settings/PersonalSection.php | 2 +- lib/public/Settings/IManager.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/encryption/lib/Settings/PersonalSection.php b/apps/encryption/lib/Settings/PersonalSection.php index fd25d25ef8..1af4229bcd 100644 --- a/apps/encryption/lib/Settings/PersonalSection.php +++ b/apps/encryption/lib/Settings/PersonalSection.php @@ -68,7 +68,7 @@ class PersonalSection implements IIconSection { * e.g. '/core/img/places/files.svg' * * @returns string - * @since 12 + * @since 13.0.0 */ public function getIcon() { return $this->urlGenerator->imagePath('settings', 'password.svg'); diff --git a/apps/federatedfilesharing/lib/Settings/PersonalSection.php b/apps/federatedfilesharing/lib/Settings/PersonalSection.php index e4e1bad721..330a4efd7f 100644 --- a/apps/federatedfilesharing/lib/Settings/PersonalSection.php +++ b/apps/federatedfilesharing/lib/Settings/PersonalSection.php @@ -44,7 +44,7 @@ class PersonalSection implements IIconSection { * e.g. '/core/img/places/files.svg' * * @returns string - * @since 12 + * @since 13.0.0 */ public function getIcon() { return $this->urlGenerator->imagePath('core', 'actions/share.svg'); diff --git a/lib/public/Settings/IManager.php b/lib/public/Settings/IManager.php index 1242f83515..7a24eab389 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); }