From 677b07c634d5c24bbde61faf15691eff5b669682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Thu, 2 Feb 2023 16:43:13 +0100 Subject: [PATCH] Add return tyoe to `RoomListBoxController::getLink()` --- files/lib/system/box/RoomListBoxController.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/lib/system/box/RoomListBoxController.class.php b/files/lib/system/box/RoomListBoxController.class.php index bb6fada..ac82e79 100644 --- a/files/lib/system/box/RoomListBoxController.class.php +++ b/files/lib/system/box/RoomListBoxController.class.php @@ -6,7 +6,7 @@ * Use of this software is governed by the Business Source License * included in the LICENSE file. * - * Change Date: 2026-09-17 + * Change Date: 2027-02-02 * * On the date above, in accordance with the Business Source * License, use of this software will be governed by version 2 @@ -91,7 +91,7 @@ public function hasLink() /** * @inheritDoc */ - public function getLink() + public function getLink(): string { return LinkHandler::getInstance()->getControllerLink(RoomListPage::class); }