1
0
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:
Tim Düsterhus 2012-03-24 22:39:26 +01:00
parent 2af603c8e5
commit 7033542580
4 changed files with 8 additions and 8 deletions

View File

@ -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;

View File

@ -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();

View File

@ -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 { }

View File

@ -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 = '';