1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/system/chat/command/commands/FreeCommand.class.php
2012-09-07 22:23:27 +02:00

31 lines
881 B
PHP

<?php
namespace wcf\system\chat\command\commands;
/**
* Informs everyone that the fish was freed. OH A NOEZ.
*
* @author Tim Düsterhus
* @copyright 2010-2012 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.wcf.chat
* @subpackage system.chat.command.commands
*/
class FreeCommand extends Me {
public function __construct(\wcf\system\chat\command\CommandHandler $commandHandler) {
parent::__construct($commandHandler);
if (\wcf\util\StringUtil::toLowerCase($this->commandHandler->getParameters()) != 'the fish') {
throw new \wcf\system\chat\command\NotFoundException();
}
$this->didInit();
}
/**
* @see \wcf\system\chat\command\ICommand::getMessage()
*/
public function getMessage() {
return 'freed the fish. OH A NOEZ';
}
}