Mark all Pages as final

This commit is contained in:
Tim Düsterhus 2022-03-04 19:45:23 +01:00
parent 8bf595d583
commit 8de6a993d1
Signed by: TimWolla
GPG Key ID: 8FF75566094168AF
6 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ use wcf\page\SortablePage;
/** /**
* Shows the command trigger list. * Shows the command trigger list.
*/ */
class CommandTriggerListPage extends SortablePage final class CommandTriggerListPage extends SortablePage
{ {
/** /**
* @inheritDoc * @inheritDoc

View File

@ -21,7 +21,7 @@ use wcf\page\SortablePage;
/** /**
* Shows the room list. * Shows the room list.
*/ */
class RoomListPage extends SortablePage final class RoomListPage extends SortablePage
{ {
/** /**
* @inheritDoc * @inheritDoc

View File

@ -29,7 +29,7 @@ use wcf\util\StringUtil;
/** /**
* Shows the suspension list. * Shows the suspension list.
*/ */
class SuspensionListPage extends SortablePage final class SuspensionListPage extends SortablePage
{ {
/** /**
* @inheritDoc * @inheritDoc

View File

@ -31,7 +31,7 @@ use wcf\util\HeaderUtil;
/** /**
* Shows the log of a specific chat room. * Shows the log of a specific chat room.
*/ */
class LogPage extends AbstractPage final class LogPage extends AbstractPage
{ {
use TConfiguredPage; use TConfiguredPage;

View File

@ -24,7 +24,7 @@ use wcf\system\WCF;
/** /**
* Shows the list of available chat rooms. * Shows the list of available chat rooms.
*/ */
class RoomListPage extends AbstractPage final class RoomListPage extends AbstractPage
{ {
/** /**
* @inheritDoc * @inheritDoc

View File

@ -28,7 +28,7 @@ use wcf\system\WCF;
/** /**
* Shows a specific chat room. * Shows a specific chat room.
*/ */
class RoomPage extends AbstractPage final class RoomPage extends AbstractPage
{ {
use TConfiguredPage; use TConfiguredPage;