diff options
author | Joas Schilling <coding@schilljs.com> | 2016-11-16 09:29:27 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-11-16 09:29:27 +0100 |
commit | 6b88d56e3aa94012dcaf9e5240b885b4e545efc6 (patch) | |
tree | ae829b3fd3e68f7a4573b82cbf46517d451b285e /lib/private/Activity/LegacySetting.php | |
parent | 6047493b6dba2a402f256d2286008c3baaa3d5f9 (diff) | |
download | nextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.tar.gz nextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.zip |
Update the since version to 11.0.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Activity/LegacySetting.php')
-rw-r--r-- | lib/private/Activity/LegacySetting.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/private/Activity/LegacySetting.php b/lib/private/Activity/LegacySetting.php index eb65e68fd4c..27495afddb0 100644 --- a/lib/private/Activity/LegacySetting.php +++ b/lib/private/Activity/LegacySetting.php @@ -64,7 +64,7 @@ class LegacySetting implements ISetting { /** * @return string Lowercase a-z and underscore only identifier - * @since 9.2.0 + * @since 11.0.0 */ public function getIdentifier() { return $this->identifier; @@ -72,7 +72,7 @@ class LegacySetting implements ISetting { /** * @return string A translated string - * @since 9.2.0 + * @since 11.0.0 */ public function getName() { return $this->name; @@ -82,7 +82,7 @@ class LegacySetting implements ISetting { * @return int whether the filter should be rather on the top or bottom of * the admin section. The filters are arranged in ascending order of the * priority values. It is required to return a value between 0 and 100. - * @since 9.2.0 + * @since 11.0.0 */ public function getPriority() { return 70; @@ -90,7 +90,7 @@ class LegacySetting implements ISetting { /** * @return bool True when the option can be changed for the stream - * @since 9.2.0 + * @since 11.0.0 */ public function canChangeStream() { return $this->canChangeStream; @@ -98,7 +98,7 @@ class LegacySetting implements ISetting { /** * @return bool True when the option can be changed for the stream - * @since 9.2.0 + * @since 11.0.0 */ public function isDefaultEnabledStream() { return $this->isDefaultEnabledStream; @@ -106,7 +106,7 @@ class LegacySetting implements ISetting { /** * @return bool True when the option can be changed for the mail - * @since 9.2.0 + * @since 11.0.0 */ public function canChangeMail() { return $this->canChangeMail; @@ -114,7 +114,7 @@ class LegacySetting implements ISetting { /** * @return bool True when the option can be changed for the stream - * @since 9.2.0 + * @since 11.0.0 */ public function isDefaultEnabledMail() { return $this->isDefaultEnabledMail; |