mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
51 lines
1 KiB
PHP
51 lines
1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Events;
|
|
|
|
use OCA\Talk\Room;
|
|
use OCP\Comments\IComment;
|
|
|
|
abstract class AReactionEvent extends ARoomEvent {
|
|
public function __construct(
|
|
Room $room,
|
|
protected IComment $message,
|
|
protected string $actorType,
|
|
protected string $actorId,
|
|
protected string $actorDisplayName,
|
|
protected string $reaction,
|
|
protected ?IComment $reactionMessage = null,
|
|
) {
|
|
parent::__construct($room);
|
|
}
|
|
|
|
public function getMessage(): IComment {
|
|
return $this->message;
|
|
}
|
|
|
|
public function getReactionMessage(): ?IComment {
|
|
return $this->reactionMessage;
|
|
}
|
|
|
|
|
|
public function getActorType(): string {
|
|
return $this->actorType;
|
|
}
|
|
|
|
public function getActorId(): string {
|
|
return $this->actorId;
|
|
}
|
|
|
|
public function getActorDisplayName(): string {
|
|
return $this->actorDisplayName;
|
|
}
|
|
|
|
public function getReaction(): string {
|
|
return $this->reaction;
|
|
}
|
|
}
|