diff options
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; |