31 lines
577 B
PHP
31 lines
577 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Events;
|
|
|
|
use OCA\Talk\Model\Message;
|
|
use OCA\Talk\Room;
|
|
|
|
class MessageParseEvent extends ARoomEvent {
|
|
public function __construct(
|
|
Room $room,
|
|
protected Message $message,
|
|
protected bool $allowInaccurate,
|
|
) {
|
|
parent::__construct($room);
|
|
}
|
|
|
|
public function getMessage(): Message {
|
|
return $this->message;
|
|
}
|
|
|
|
public function allowInaccurate(): bool {
|
|
return $this->allowInaccurate;
|
|
}
|
|
}
|