Mark all PageHandlers as final

This commit is contained in:
Tim Düsterhus 2022-03-04 19:19:32 +01:00
parent f38d27b55d
commit 54a84be9a6
Signed by: TimWolla
GPG Key ID: 8FF75566094168AF
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ use wcf\system\WCF;
/** /**
* Allows to choose a room in the menu item management. * Allows to choose a room in the menu item management.
*/ */
class LogPageHandler extends AbstractLookupPageHandler implements IOnlineLocationPageHandler final class LogPageHandler extends AbstractLookupPageHandler implements IOnlineLocationPageHandler
{ {
use TRoomPageHandler; use TRoomPageHandler;
use TOnlineLocationPageHandler; use TOnlineLocationPageHandler;

View File

@ -22,7 +22,7 @@ use wcf\system\page\handler\AbstractMenuPageHandler;
/** /**
* Shows the number of chatters in the RoomList menu item. * Shows the number of chatters in the RoomList menu item.
*/ */
class RoomListPageHandler extends AbstractMenuPageHandler final class RoomListPageHandler extends AbstractMenuPageHandler
{ {
/** /**
* @inheritDoc * @inheritDoc

View File

@ -26,7 +26,7 @@ use wcf\system\WCF;
/** /**
* Allows to choose a room in the menu item management. * Allows to choose a room in the menu item management.
*/ */
class RoomPageHandler extends AbstractLookupPageHandler implements IOnlineLocationPageHandler final class RoomPageHandler extends AbstractLookupPageHandler implements IOnlineLocationPageHandler
{ {
use TRoomPageHandler; use TRoomPageHandler;
use TOnlineLocationPageHandler; use TOnlineLocationPageHandler;