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

31 lines
881 B
PHP
Raw Normal View History

<?php
namespace wcf\system\chat\command\commands;
/**
2012-01-22 14:40:25 +00:00
* Informs everyone that the fish was freed. OH A NOEZ.
*
* @author Tim Düsterhus
2012-01-30 16:48:13 +00:00
* @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
*/
2012-09-07 20:23:27 +00:00
class FreeCommand extends Me {
public function __construct(\wcf\system\chat\command\CommandHandler $commandHandler) {
2012-03-24 21:29:07 +00:00
parent::__construct($commandHandler);
if (\wcf\util\StringUtil::toLowerCase($this->commandHandler->getParameters()) != 'the fish') {
throw new \wcf\system\chat\command\NotFoundException();
2012-03-24 21:29:07 +00:00
}
$this->didInit();
}
2011-12-27 13:32:28 +00:00
/**
* @see \wcf\system\chat\command\ICommand::getMessage()
2011-12-27 13:32:28 +00:00
*/
public function getMessage() {
2012-03-24 21:29:07 +00:00
return 'freed the fish. OH A NOEZ';
}
}