mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Some files slipped through sed.
This commit is contained in:
parent
2af603c8e5
commit
7033542580
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace wcf\system\chat\commands;
|
namespace wcf\system\chat\command;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for chat-commands.
|
* Interface for chat-commands.
|
||||||
@ -8,7 +8,7 @@
|
|||||||
* @copyright 2010-2012 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>
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||||
* @package timwolla.wcf.chat
|
* @package timwolla.wcf.chat
|
||||||
* @subpackage system.chat.commands
|
* @subpackage system.chat.command
|
||||||
*/
|
*/
|
||||||
interface ICommand {
|
interface ICommand {
|
||||||
const SMILEY_OFF = 0;
|
const SMILEY_OFF = 0;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace wcf\system\chat\commands;
|
namespace wcf\system\chat\command;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for Restricted commands.
|
* Interface for Restricted commands.
|
||||||
@ -8,7 +8,7 @@
|
|||||||
* @copyright 2010-2012 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>
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||||
* @package timwolla.wcf.chat
|
* @package timwolla.wcf.chat
|
||||||
* @subpackage system.chat.commands
|
* @subpackage system.chat.command
|
||||||
*/
|
*/
|
||||||
interface IRestrictedCommand {
|
interface IRestrictedCommand {
|
||||||
function checkPermission();
|
function checkPermission();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace wcf\system\chat\commands;
|
namespace wcf\system\chat\command;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thrown when a command is not found.
|
* Thrown when a command is not found.
|
||||||
@ -8,6 +8,6 @@
|
|||||||
* @copyright 2010-2012 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>
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||||
* @package timwolla.wcf.chat
|
* @package timwolla.wcf.chat
|
||||||
* @subpackage system.chat.commands
|
* @subpackage system.chat.command
|
||||||
*/
|
*/
|
||||||
class NotFoundException extends \Exception { }
|
class NotFoundException extends \Exception { }
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace wcf\system\chat\commands;
|
namespace wcf\system\chat\command;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thrown when a user is not found.
|
* Thrown when a user is not found.
|
||||||
@ -8,7 +8,7 @@
|
|||||||
* @copyright 2010-2012 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>
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||||||
* @package timwolla.wcf.chat
|
* @package timwolla.wcf.chat
|
||||||
* @subpackage system.chat.commands
|
* @subpackage system.chat.command
|
||||||
*/
|
*/
|
||||||
class UserNotFoundException extends \Exception {
|
class UserNotFoundException extends \Exception {
|
||||||
private $username = '';
|
private $username = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user