diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-22 09:14:12 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-22 09:14:12 +0100 |
commit | 5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (patch) | |
tree | e870d29e21c14d5b1683d638dff978afe0a104fa /framework/Data/SqlMap/Configuration/TSqlMapStatement.php | |
parent | 53e4cd65205ac33d7dbc61a767f467c1b896dfc6 (diff) |
Apply namespaces to class inheritances (pt1)
Diffstat (limited to 'framework/Data/SqlMap/Configuration/TSqlMapStatement.php')
-rw-r--r-- | framework/Data/SqlMap/Configuration/TSqlMapStatement.php | 10 |
1 files changed, 5 insertions, 5 deletions
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) { |