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

View File

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

View File

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

View File

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