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
|
||||
namespace wcf\system\chat\commands;
|
||||
namespace wcf\system\chat\command;
|
||||
|
||||
/**
|
||||
* Interface for chat-commands.
|
||||
@ -8,7 +8,7 @@
|
||||
* @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
|
||||
* @subpackage system.chat.command
|
||||
*/
|
||||
interface ICommand {
|
||||
const SMILEY_OFF = 0;
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace wcf\system\chat\commands;
|
||||
namespace wcf\system\chat\command;
|
||||
|
||||
/**
|
||||
* Interface for Restricted commands.
|
||||
@ -8,7 +8,7 @@
|
||||
* @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
|
||||
* @subpackage system.chat.command
|
||||
*/
|
||||
interface IRestrictedCommand {
|
||||
function checkPermission();
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace wcf\system\chat\commands;
|
||||
namespace wcf\system\chat\command;
|
||||
|
||||
/**
|
||||
* Thrown when a command is not found.
|
||||
@ -8,6 +8,6 @@
|
||||
* @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
|
||||
* @subpackage system.chat.command
|
||||
*/
|
||||
class NotFoundException extends \Exception { }
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace wcf\system\chat\commands;
|
||||
namespace wcf\system\chat\command;
|
||||
|
||||
/**
|
||||
* Thrown when a user is not found.
|
||||
@ -8,7 +8,7 @@
|
||||
* @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
|
||||
* @subpackage system.chat.command
|
||||
*/
|
||||
class UserNotFoundException extends \Exception {
|
||||
private $username = '';
|
||||
|
Loading…
Reference in New Issue
Block a user