2013-06-22 15:11:22 +00:00
|
|
|
<?php
|
|
|
|
namespace chat\system\command\commands;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unmutes a user globally.
|
2014-02-28 16:06:50 +00:00
|
|
|
*
|
2013-06-22 15:11:22 +00:00
|
|
|
* @author Tim Düsterhus
|
2014-02-27 22:05:09 +00:00
|
|
|
* @copyright 2010-2014 Tim Düsterhus
|
2013-06-22 15:11:22 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
|
|
|
* @package be.bastelstu.chat
|
|
|
|
* @subpackage system.chat.command.commands
|
|
|
|
*/
|
|
|
|
class UngmuteCommand extends \chat\system\command\AbstractUnsuspensionCommand {
|
|
|
|
const IS_GLOBAL = true;
|
|
|
|
const SUSPENSION_TYPE = \chat\data\suspension\Suspension::TYPE_MUTE;
|
|
|
|
}
|