adds namespace declarations to files
This commit is contained in:
parent
edd8a7eb70
commit
9dad5a4aa7
8 changed files with 15 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
|||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Thedevstack\\PhpXmpp\\": "src/"
|
||||
"thedevstack\\phpxmpp\\": "src/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
|
|
BIN
src/BOSH.php
BIN
src/BOSH.php
Binary file not shown.
|
@ -37,5 +37,7 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class XMPPException extends \Exception {
|
||||
}
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class Roster {
|
||||
/**
|
||||
* Roster array, handles contacts and presence. Indexed by jid.
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class XMLObj {
|
||||
/**
|
||||
* Tag name
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class XMLStream {
|
||||
/**
|
||||
* @var resource
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class XMPP extends XMLStream {
|
||||
/**
|
||||
* @var string
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
* @copyright 2008 Nathanael C. Fritz
|
||||
* @version $Id$
|
||||
*/
|
||||
namespace thedevstack\phpxmpp;
|
||||
|
||||
class XMPPLog {
|
||||
|
||||
const LEVEL_ERROR = 0;
|
||||
|
|
Loading…
Reference in a new issue