diff options
-rw-r--r-- | apps/encryption/lib/Settings/PersonalSection.php | 2 | ||||
-rw-r--r-- | apps/federatedfilesharing/lib/Settings/PersonalSection.php | 2 | ||||
-rw-r--r-- | 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 fd25d25ef8f..1af4229bcd2 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 e4e1bad7217..330a4efd7f5 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 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); } |