* @package be.bastelstu.wcf.chat * @subpackage system.chat.command.commands */ class FreeCommand extends MeCommand { 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'; } }