1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
namespace Matrix\Events\Room;
use Matrix\Data\Room\TopicContentBlock;
use Matrix\Data\UnsignedData;
use Matrix\Enums\EventType;
use Matrix\Events\StateEvent;
class TopicEvent extends StateEvent
{
public function __construct(
string $eventId,
int $originServerTimestamp,
string $roomId,
string $sender,
string $topic,
?TopicContentBlock $topicContentBlock = null,
string $stateKey = "",
?UnsignedData $unsigned = null,
)
{
parent::__construct(
array_filter([
"m.topic" => $topicContentBlock,
"topic" => $topic,
], fn ($value) => ! is_null($value)),
$eventId,
$originServerTimestamp,
$roomId,
$sender,
$stateKey,
EventType::ROOM_TOPIC,
$unsigned,
);
}
}
|