2013-01-14 19:52:09 +00:00
|
|
|
<?php
|
2013-01-26 21:46:54 +00:00
|
|
|
namespace chat\system\command\commands;
|
2013-01-27 20:58:10 +00:00
|
|
|
use \chat\data\suspension;
|
2013-01-14 19:52:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Bans a user.
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2013-01-19 19:36:40 +00:00
|
|
|
* @copyright 2010-2013 Tim Düsterhus
|
2013-01-14 19:52:09 +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
|
2013-01-14 19:52:09 +00:00
|
|
|
* @subpackage system.chat.command.commands
|
|
|
|
*/
|
|
|
|
class BanCommand extends MuteCommand {
|
2013-06-22 00:19:52 +00:00
|
|
|
const SUSPENSION_TYPE = suspension\Suspension::TYPE_BAN;
|
2013-01-14 19:52:09 +00:00
|
|
|
}
|