Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nextcloud/server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 22b4a6e054281493cc760062e0b831ad4644f40a
Choose a base ref
..
head repository: nextcloud/server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f65196c9ab90f3598c7e8445103920e2d526c1dc
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 apps/user_status/lib/Connector/UserStatusProvider.php
  2. +1 −1 apps/user_status/lib/Service/StatusService.php
2 changes: 1 addition & 1 deletion apps/user_status/lib/Connector/UserStatusProvider.php
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ public function getUserStatuses(array $userIds): array {
* @param string $messageId The new message id.
* @param string $status The new status.
* @param bool $createBackup If true, this will store the old status so that it is possible to revert it later (e.g. after a call).
* @param array{clearAt: \DateTime|int|null, customIcon: string|null, customMessage: string|null} $extraParams Pass extra parameters to the user status implementation provider. Added in 25.0.0
* @param array{clearAt?: \DateTime|int|null, customIcon?: string|null, customMessage?: string|null} $extraParams Pass extra parameters to the user status implementation provider. Added in 25.0.0
*/
public function setUserStatus(string $userId, string $messageId, string $status, bool $createBackup, array $extraParams = []): void {
$this->service->setUserStatus($userId, $status, $messageId, $createBackup, $extraParams);
2 changes: 1 addition & 1 deletion apps/user_status/lib/Service/StatusService.php
Original file line number Diff line number Diff line change
@@ -251,7 +251,7 @@ public function setPredefinedMessage(string $userId,
* @param string $status
* @param string $messageId
* @param bool $createBackup
* @param array $extraParams
* @param array{clearAt?: \DateTime|int|null, customIcon?: string|null, customMessage?: string|null} $extraParams
* @throws InvalidStatusTypeException
* @throws InvalidMessageIdException
*/