summaryrefslogtreecommitdiff
path: root/framework/Xml
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-21 09:33:13 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-21 09:33:13 +0100
commit67d7b1bd4bb020f0b948f1a67a8e98f42d28928f (patch)
tree7bbc1e37c56224f56f73762ccfac4a424da0bb15 /framework/Xml
parentb927e32fa14869bc3a48d1fba6b2a161b9606270 (diff)
Add namespaces: framework/*.php, Util, Wsat, Xml
Diffstat (limited to 'framework/Xml')
-rw-r--r--framework/Xml/TXmlDocument.php6
-rw-r--r--framework/Xml/TXmlElement.php6
-rw-r--r--framework/Xml/TXmlElementList.php6
3 files changed, 12 insertions, 6 deletions
diff --git a/framework/Xml/TXmlDocument.php b/framework/Xml/TXmlDocument.php
index 6cce0640..ca19a0cf 100644
--- a/framework/Xml/TXmlDocument.php
+++ b/framework/Xml/TXmlDocument.php
@@ -6,9 +6,11 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
- * @package System.Xml
+ * @package Prado\Xml
*/
+namespace Prado\Xml;
+
/**
* TXmlDocument class.
*
@@ -55,7 +57,7 @@
* </code>
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @package System.Xml
+ * @package Prado\Xml
* @since 3.0
*/
class TXmlDocument extends TXmlElement
diff --git a/framework/Xml/TXmlElement.php b/framework/Xml/TXmlElement.php
index 2df8308c..6ed1c62f 100644
--- a/framework/Xml/TXmlElement.php
+++ b/framework/Xml/TXmlElement.php
@@ -6,9 +6,11 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
- * @package System.Xml
+ * @package Prado\Xml
*/
+namespace Prado\Xml;
+
/**
* TXmlElement class.
*
@@ -21,7 +23,7 @@
* TBD: xpath
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @package System.Xml
+ * @package Prado\Xml
* @since 3.0
*/
class TXmlElement extends TComponent
diff --git a/framework/Xml/TXmlElementList.php b/framework/Xml/TXmlElementList.php
index 301f9d1e..f94d0cf1 100644
--- a/framework/Xml/TXmlElementList.php
+++ b/framework/Xml/TXmlElementList.php
@@ -6,9 +6,11 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
- * @package System.Xml
+ * @package Prado\Xml
*/
+namespace Prado\Xml;
+
/**
* TXmlElementList class.
*
@@ -16,7 +18,7 @@
* You may manipulate the collection with the operations defined in {@link TList}.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @package System.Xml
+ * @package Prado\Xml
* @since 3.0
*/
class TXmlElementList extends TList