2011-12-27 12:58:28 +00:00
|
|
|
<?php
|
2012-03-24 21:37:47 +00:00
|
|
|
namespace wcf\system\chat\command\commands;
|
2011-12-27 12:58:28 +00:00
|
|
|
|
|
|
|
/**
|
2012-01-22 14:40:25 +00:00
|
|
|
* Informs everyone that the fish was freed. OH A NOEZ.
|
2011-12-27 12:58:28 +00:00
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-30 16:48:13 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-12-27 12:58:28 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
2012-06-04 19:43:03 +00:00
|
|
|
* @package be.bastelstu.wcf.chat
|
2012-03-24 21:37:47 +00:00
|
|
|
* @subpackage system.chat.command.commands
|
2011-12-27 12:58:28 +00:00
|
|
|
*/
|
2011-12-27 13:32:28 +00:00
|
|
|
class Free extends Me {
|
2012-03-24 21:37:47 +00:00
|
|
|
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') {
|
2012-03-24 21:37:47 +00:00
|
|
|
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
|
|
|
/**
|
2012-03-24 21:37:47 +00:00
|
|
|
* @see \wcf\system\chat\command\ICommand::getMessage()
|
2011-12-27 13:32:28 +00:00
|
|
|
*/
|
2011-12-27 12:58:28 +00:00
|
|
|
public function getMessage() {
|
2012-03-24 21:29:07 +00:00
|
|
|
return 'freed the fish. OH A NOEZ';
|
2011-12-27 12:58:28 +00:00
|
|
|
}
|
|
|
|
}
|