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/command/commands/FreeCommand.class.php

31 lines
836 B
PHP
Raw Normal View History

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