mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2025-04-03 11:14:52 +00:00
26 lines
792 B
PHP
26 lines
792 B
PHP
<?php
|
|
namespace wcf\system\chat\commands\commands;
|
|
|
|
/**
|
|
* Informs everyone that the fish was freed. OH A NOEZ.
|
|
*
|
|
* @author Tim Düsterhus
|
|
* @copyright 2010-2012 Tim Düsterhus
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
* @package timwolla.wcf.chat
|
|
* @subpackage system.chat.commands.commands
|
|
*/
|
|
class Free extends Me {
|
|
public $enableSmilies = \wcf\system\chat\commands\ICommand::SMILEY_OFF;
|
|
|
|
/**
|
|
* @see \wcf\system\chat\commands\ICommand::getMessage()
|
|
*/
|
|
public function getMessage() {
|
|
if (\wcf\util\StringUtil::toLowerCase($this->commandHandler->getParameters()) == 'the fish')
|
|
return 'freed the fish. OH A NOEZ';
|
|
else
|
|
throw new \wcf\system\chat\commands\NotFoundException();
|
|
}
|
|
}
|