diff --git a/lib/public/User/Events/UserConfigChangedEvent.php b/lib/public/User/Events/UserConfigChangedEvent.php index 7a07f8b49e8b5..bd7642e54cd58 100644 --- a/lib/public/User/Events/UserConfigChangedEvent.php +++ b/lib/public/User/Events/UserConfigChangedEvent.php @@ -29,7 +29,7 @@ use OCP\EventDispatcher\Event; /** - * @since 30.0.0 + * @since 31.0.0 */ class UserConfigChangedEvent extends Event { @@ -40,7 +40,7 @@ class UserConfigChangedEvent extends Event { private mixed $oldValue; /** - * @since 30.0.0 + * @since 31.0.0 */ public function __construct(string $userId, @@ -58,7 +58,7 @@ public function __construct(string $userId, /** * @return string - * @since 30.0.0 + * @since 31.0.0 */ public function getUserId(): string { return $this->userId; @@ -66,7 +66,7 @@ public function getUserId(): string { /** * @return string - * @since 30.0.0 + * @since 31.0.0 */ public function getAppId(): string { return $this->appId; @@ -74,7 +74,7 @@ public function getAppId(): string { /** * @return string - * @since 30.0.0 + * @since 31.0.0 */ public function getKey(): string { return $this->key; @@ -82,7 +82,7 @@ public function getKey(): string { /** * @return mixed - * @since 30.0.0 + * @since 31.0.0 */ public function getValue() { return $this->value; @@ -90,7 +90,7 @@ public function getValue() { /** * @return mixed - * @since 30.0.0 + * @since 31.0.0 */ public function getOldValue() { return $this->oldValue;