2011-12-27 12:58:28 +00:00
|
|
|
<?php
|
2013-01-26 21:46:54 +00:00
|
|
|
namespace chat\system\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.
|
2014-02-28 16:06:50 +00:00
|
|
|
*
|
2011-12-27 12:58:28 +00:00
|
|
|
* @author Tim Düsterhus
|
2014-02-27 22:05:09 +00:00
|
|
|
* @copyright 2010-2014 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>
|
2013-01-19 19:36:40 +00:00
|
|
|
* @package be.bastelstu.chat
|
2012-03-24 21:37:47 +00:00
|
|
|
* @subpackage system.chat.command.commands
|
2011-12-27 12:58:28 +00:00
|
|
|
*/
|
2012-10-17 12:26:37 +00:00
|
|
|
class FreeCommand extends MeCommand {
|
2013-01-26 21:46:54 +00:00
|
|
|
public function __construct(\chat\system\command\CommandHandler $commandHandler) {
|
2012-03-24 21:29:07 +00:00
|
|
|
parent::__construct($commandHandler);
|
|
|
|
|
2013-08-19 21:23:26 +00:00
|
|
|
if (mb_strtolower($this->commandHandler->getParameters()) != 'the fish') {
|
2013-06-17 22:28:56 +00:00
|
|
|
throw new \InvalidArgumentException();
|
2012-03-24 21:29:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->didInit();
|
|
|
|
}
|
|
|
|
|
2011-12-27 13:32:28 +00:00
|
|
|
/**
|
2013-01-26 21:46:54 +00:00
|
|
|
* @see \chat\system\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
|
|
|
}
|
|
|
|
}
|