Files
nextcloud-mail/lib/Events/NewMessageReceivedEvent.php
Daniel Kesselberg 1874205dda style: apply coding-standard 1.3.1
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-10-10 20:17:23 +02:00

24 lines
412 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Mail\Events;
use OCP\EventDispatcher\Event;
class NewMessageReceivedEvent extends Event {
public function __construct(
private string $uri,
) {
parent::__construct();
}
public function getUri(): string {
return $this->uri;
}
}