Skip to content

Commit

Permalink
docs: update since which version event is added
Browse files Browse the repository at this point in the history
Signed-off-by: Akhil <akhil@e.email>
  • Loading branch information
akhil1508 committed Sep 17, 2024
1 parent c922abb commit 0b452a7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/public/User/Events/UserConfigChangedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
use OCP\EventDispatcher\Event;

/**
* @since 30.0.0
* @since 31.0.0
*/

class UserConfigChangedEvent extends Event {
Expand All @@ -40,7 +40,7 @@ class UserConfigChangedEvent extends Event {
private mixed $oldValue;

/**
* @since 30.0.0
* @since 31.0.0
*/

public function __construct(string $userId,
Expand All @@ -58,39 +58,39 @@ public function __construct(string $userId,

/**
* @return string
* @since 30.0.0
* @since 31.0.0
*/
public function getUserId(): string {
return $this->userId;
}

/**
* @return string
* @since 30.0.0
* @since 31.0.0
*/
public function getAppId(): string {
return $this->appId;
}

/**
* @return string
* @since 30.0.0
* @since 31.0.0
*/
public function getKey(): string {
return $this->key;
}

/**
* @return mixed
* @since 30.0.0
* @since 31.0.0
*/
public function getValue() {
return $this->value;
}

/**
* @return mixed
* @since 30.0.0
* @since 31.0.0
*/
public function getOldValue() {
return $this->oldValue;
Expand Down

0 comments on commit 0b452a7

Please sign in to comment.