summaryrefslogtreecommitdiff
path: root/framework/Data/SqlMap/Configuration
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Data/SqlMap/Configuration')
-rw-r--r--framework/Data/SqlMap/Configuration/TDiscriminator.php2
-rw-r--r--framework/Data/SqlMap/Configuration/TParameterMap.php2
-rw-r--r--framework/Data/SqlMap/Configuration/TParameterProperty.php2
-rw-r--r--framework/Data/SqlMap/Configuration/TResultMap.php2
-rw-r--r--framework/Data/SqlMap/Configuration/TResultProperty.php12
-rw-r--r--framework/Data/SqlMap/Configuration/TSqlMapCacheModel.php2
-rw-r--r--framework/Data/SqlMap/Configuration/TSqlMapStatement.php10
-rw-r--r--framework/Data/SqlMap/Configuration/TSubMap.php2
8 files changed, 17 insertions, 17 deletions
diff --git a/framework/Data/SqlMap/Configuration/TDiscriminator.php b/framework/Data/SqlMap/Configuration/TDiscriminator.php
index 100e1816..a5cbed30 100644
--- a/framework/Data/SqlMap/Configuration/TDiscriminator.php
+++ b/framework/Data/SqlMap/Configuration/TDiscriminator.php
@@ -25,7 +25,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TDiscriminator extends TComponent
+class TDiscriminator extends \Prado\TComponent
{
private $_column;
private $_type;
diff --git a/framework/Data/SqlMap/Configuration/TParameterMap.php b/framework/Data/SqlMap/Configuration/TParameterMap.php
index 08ca6471..d1e78984 100644
--- a/framework/Data/SqlMap/Configuration/TParameterMap.php
+++ b/framework/Data/SqlMap/Configuration/TParameterMap.php
@@ -30,7 +30,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TParameterMap extends TComponent
+class TParameterMap extends \Prado\TComponent
{
private $_extend;
private $_properties;
diff --git a/framework/Data/SqlMap/Configuration/TParameterProperty.php b/framework/Data/SqlMap/Configuration/TParameterProperty.php
index d691d1f9..ee6f8838 100644
--- a/framework/Data/SqlMap/Configuration/TParameterProperty.php
+++ b/framework/Data/SqlMap/Configuration/TParameterProperty.php
@@ -29,7 +29,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TParameterProperty extends TComponent
+class TParameterProperty extends \Prado\TComponent
{
private $_typeHandler;
private $_type;
diff --git a/framework/Data/SqlMap/Configuration/TResultMap.php b/framework/Data/SqlMap/Configuration/TResultMap.php
index d4707c5d..e183438f 100644
--- a/framework/Data/SqlMap/Configuration/TResultMap.php
+++ b/framework/Data/SqlMap/Configuration/TResultMap.php
@@ -36,7 +36,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TResultMap extends TComponent
+class TResultMap extends \Prado\TComponent
{
private $_columns;
private $_class;
diff --git a/framework/Data/SqlMap/Configuration/TResultProperty.php b/framework/Data/SqlMap/Configuration/TResultProperty.php
index 2404d2c9..59ce44a9 100644
--- a/framework/Data/SqlMap/Configuration/TResultProperty.php
+++ b/framework/Data/SqlMap/Configuration/TResultProperty.php
@@ -33,7 +33,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TResultProperty extends TComponent
+class TResultProperty extends \Prado\TComponent
{
private $_nullValue;
private $_propertyName;
@@ -275,7 +275,7 @@ class TResultProperty extends TComponent
}
/**
- * Determines if the type is an instance of ArrayAccess, TList or an array.
+ * Determines if the type is an instance of \ArrayAccess, TList or an array.
* @return int TResultProperty::LIST_TYPE or TResultProperty::ARRAY_TYPE
*/
protected function getPropertyValueType()
@@ -308,10 +308,10 @@ class TResultProperty extends TComponent
}
/**
- * Returns true if the result property {@link Type getType()} is of ArrayAccess
- * or that the actual result object is an array or implements ArrayAccess
+ * Returns true if the result property {@link Type getType()} is of \ArrayAccess
+ * or that the actual result object is an array or implements \ArrayAccess
* @param object result object
- * @return boolean true if the result object is an instance of ArrayAccess or is an array.
+ * @return boolean true if the result object is an instance of \ArrayAccess or is an array.
*/
public function instanceOfArrayType($target)
{
@@ -319,7 +319,7 @@ class TResultProperty extends TComponent
{
$prop = TPropertyAccess::get($target,$this->getProperty());
if(is_object($prop))
- return $prop instanceof ArrayAccess;
+ return $prop instanceof \ArrayAccess;
return is_array($prop);
}
return $this->getPropertyValueType() == self::ARRAY_TYPE;
diff --git a/framework/Data/SqlMap/Configuration/TSqlMapCacheModel.php b/framework/Data/SqlMap/Configuration/TSqlMapCacheModel.php
index 8f1aed63..393b61e6 100644
--- a/framework/Data/SqlMap/Configuration/TSqlMapCacheModel.php
+++ b/framework/Data/SqlMap/Configuration/TSqlMapCacheModel.php
@@ -32,7 +32,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TSqlMapCacheModel extends TComponent
+class TSqlMapCacheModel extends \Prado\TComponent
{
private $_cache;
private $_hits = 0;
diff --git a/framework/Data/SqlMap/Configuration/TSqlMapStatement.php b/framework/Data/SqlMap/Configuration/TSqlMapStatement.php
index b631e1b0..7cc278b5 100644
--- a/framework/Data/SqlMap/Configuration/TSqlMapStatement.php
+++ b/framework/Data/SqlMap/Configuration/TSqlMapStatement.php
@@ -28,7 +28,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TSqlMapStatement extends TComponent
+class TSqlMapStatement extends \Prado\TComponent
{
private $_parameterMapName;
private $_parameterMap;
@@ -185,7 +185,7 @@ class TSqlMapStatement extends TComponent
}
/**
- * @return string name of a PHP class that implements ArrayAccess.
+ * @return string name of a PHP class that implements \ArrayAccess.
*/
public function getListClass()
{
@@ -193,8 +193,8 @@ class TSqlMapStatement extends TComponent
}
/**
- * An ArrayAccess class can be specified to handle the type of objects in the collection.
- * @param string name of a PHP class that implements ArrayAccess.
+ * An \ArrayAccess class can be specified to handle the type of objects in the collection.
+ * @param string name of a PHP class that implements \ArrayAccess.
*/
public function setListClass($value)
{
@@ -256,7 +256,7 @@ class TSqlMapStatement extends TComponent
/**
* @param TSqlMapTypeHandlerRegistry type handler registry
- * @return ArrayAccess new instance of list class.
+ * @return \ArrayAccess new instance of list class.
*/
public function createInstanceOfListClass($registry)
{
diff --git a/framework/Data/SqlMap/Configuration/TSubMap.php b/framework/Data/SqlMap/Configuration/TSubMap.php
index c8ec3d64..c6d01e0d 100644
--- a/framework/Data/SqlMap/Configuration/TSubMap.php
+++ b/framework/Data/SqlMap/Configuration/TSubMap.php
@@ -23,7 +23,7 @@ namespace Prado\Data\SqlMap\Configuration;
* @package Prado\Data\SqlMap\Configuration
* @since 3.1
*/
-class TSubMap extends TComponent
+class TSubMap extends \Prado\TComponent
{
private $_value;
private $_resultMapping;