mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-16 16:30:09 +00:00
Mark all Commands as final
This commit is contained in:
parent
d44003b3ef
commit
5b4d97fbc8
@ -27,7 +27,7 @@
|
|||||||
/**
|
/**
|
||||||
* The away command marks the user as being away.
|
* The away command marks the user as being away.
|
||||||
*/
|
*/
|
||||||
class AwayCommand extends AbstractCommand implements ICommand
|
final class AwayCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* The back command marks the user as being back.
|
* The back command marks the user as being back.
|
||||||
*/
|
*/
|
||||||
class BackCommand extends AbstractCommand implements ICommand
|
final class BackCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
/**
|
/**
|
||||||
* The ban command creates a new be.bastelstu.chat.suspension.ban suspension.
|
* The ban command creates a new be.bastelstu.chat.suspension.ban suspension.
|
||||||
*/
|
*/
|
||||||
class BanCommand extends AbstractSuspensionCommand implements ICommand
|
final class BanCommand extends AbstractSuspensionCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* BroadcastCommand sends a broadcast into all channels.
|
* BroadcastCommand sends a broadcast into all channels.
|
||||||
*/
|
*/
|
||||||
class BroadcastCommand extends AbstractInputProcessedCommand implements ICommand
|
final class BroadcastCommand extends AbstractInputProcessedCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
/**
|
/**
|
||||||
* The color command allows a user to set a color for their username
|
* The color command allows a user to set a color for their username
|
||||||
*/
|
*/
|
||||||
class ColorCommand extends AbstractCommand implements ICommand
|
final class ColorCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Regular expression matching RGB values in hexadecimal notation
|
* Regular expression matching RGB values in hexadecimal notation
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
/**
|
/**
|
||||||
* The info command shows information about a single user.
|
* The info command shows information about a single user.
|
||||||
*/
|
*/
|
||||||
class InfoCommand extends AbstractCommand implements ICommand
|
final class InfoCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
use TNeedsUser;
|
use TNeedsUser;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* MeCommand represents an action message.
|
* MeCommand represents an action message.
|
||||||
*/
|
*/
|
||||||
class MeCommand extends AbstractCommand implements ICommand
|
final class MeCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
/**
|
/**
|
||||||
* The mute command creates a new be.bastelstu.chat.suspension.mute suspension.
|
* The mute command creates a new be.bastelstu.chat.suspension.mute suspension.
|
||||||
*/
|
*/
|
||||||
class MuteCommand extends AbstractSuspensionCommand implements ICommand
|
final class MuteCommand extends AbstractSuspensionCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* The plain command creates a normal chat message
|
* The plain command creates a normal chat message
|
||||||
*/
|
*/
|
||||||
class PlainCommand extends AbstractInputProcessedCommand implements ICommand
|
final class PlainCommand extends AbstractInputProcessedCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* TeamCommand sends a broadcast to all team members.
|
* TeamCommand sends a broadcast to all team members.
|
||||||
*/
|
*/
|
||||||
class TeamCommand extends AbstractInputProcessedCommand implements ICommand
|
final class TeamCommand extends AbstractInputProcessedCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
/**
|
/**
|
||||||
* The temproom command allows a user to manage temporary rooms.
|
* The temproom command allows a user to manage temporary rooms.
|
||||||
*/
|
*/
|
||||||
class TemproomCommand extends AbstractCommand implements ICommand
|
final class TemproomCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
use TNeedsUser;
|
use TNeedsUser;
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
/**
|
/**
|
||||||
* The unban command revokes a new be.bastelstu.chat.suspension.ban suspension.
|
* The unban command revokes a new be.bastelstu.chat.suspension.ban suspension.
|
||||||
*/
|
*/
|
||||||
class UnbanCommand extends AbstractUnsuspensionCommand implements ICommand
|
final class UnbanCommand extends AbstractUnsuspensionCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
/**
|
/**
|
||||||
* The unmute command revokes a new be.bastelstu.chat.suspension.mute suspension.
|
* The unmute command revokes a new be.bastelstu.chat.suspension.mute suspension.
|
||||||
*/
|
*/
|
||||||
class UnmuteCommand extends AbstractUnsuspensionCommand implements ICommand
|
final class UnmuteCommand extends AbstractUnsuspensionCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
* The where command shows the distribution of users among
|
* The where command shows the distribution of users among
|
||||||
* the different chat rooms.
|
* the different chat rooms.
|
||||||
*/
|
*/
|
||||||
class WhereCommand extends AbstractCommand implements ICommand
|
final class WhereCommand extends AbstractCommand implements ICommand
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
* The whisper command creates a private message
|
* The whisper command creates a private message
|
||||||
* between two chat users.
|
* between two chat users.
|
||||||
*/
|
*/
|
||||||
class WhisperCommand extends AbstractInputProcessedCommand implements ICommand
|
final class WhisperCommand extends AbstractInputProcessedCommand implements ICommand
|
||||||
{
|
{
|
||||||
use TNeedsUser;
|
use TNeedsUser;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user