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:
Diffstat (limited to 'lib/Events/ChangeExpireDateEvent.php')
-rw-r--r--lib/Events/ChangeExpireDateEvent.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/Events/ChangeExpireDateEvent.php b/lib/Events/ChangeExpireDateEvent.php
deleted file mode 100644
index 918c7bb60..000000000
--- a/lib/Events/ChangeExpireDateEvent.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-
-declare(strict_types=1);
-/**
- * @copyright Copyright (c) 2022 Vitor Mattos <vitor@php.rio>
- *
- * @author Vitor Mattos <vitor@php.rio>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-namespace OCA\Talk\Events;
-
-use OCA\Talk\Room;
-
-class ChangeExpireDateEvent extends RoomEvent {
- private int $seconds;
- public function __construct(Room $room,
- int $seconds
- ) {
- parent::__construct($room);
- $this->seconds = $seconds;
- }
-
- public function getExpireDateSeconds(): int {
- return $this->seconds;
- }
-}