Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-02-11 13:50:20 +0300
committerJoas Schilling <coding@schilljs.com>2022-02-11 13:50:20 +0300
commit1d90b56b298d801b8e6a3762b3364c815885e449 (patch)
tree7781eddd24369886464997a9d4146b6ad9ba4463 /lib/Service
parent068adbc0076ab8b13fa3f71f8baa9fb077b67a27 (diff)
Add psalm-parameters to show a problem
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Service')
-rw-r--r--lib/Service/ParticipantService.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Service/ParticipantService.php b/lib/Service/ParticipantService.php
index 2bd4010fd..eb26ae236 100644
--- a/lib/Service/ParticipantService.php
+++ b/lib/Service/ParticipantService.php
@@ -998,6 +998,12 @@ class ParticipantService {
$this->dispatcher->dispatch(Room::EVENT_AFTER_SESSION_UPDATE_CALL_FLAGS, $event);
}
+ /**
+ * @param Room $room
+ * @param string[] $userIds
+ * @param int $messageId
+ * @param string[] $usersDirectlyMentioned
+ */
public function markUsersAsMentioned(Room $room, array $userIds, int $messageId, array $usersDirectlyMentioned): void {
$update = $this->connection->getQueryBuilder();
$update->update('talk_attendees')