diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-21 09:10:08 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-21 09:10:08 +0100 |
commit | b780f073fc8a522cae078f3e53d6fa73dbd5e63b (patch) | |
tree | 8766bed34820042a456be6bdeed6091371f4504f /framework/Data/ActiveRecord/Relations | |
parent | bbda6a710849a46de98937e85e96ea06abe333fd (diff) |
Add namespaces: Caching, Collections, Data
Diffstat (limited to 'framework/Data/ActiveRecord/Relations')
6 files changed, 24 insertions, 12 deletions
diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php b/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php index 2197b48c..f3687b9b 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * Loads base active record relationship class. */ @@ -65,7 +67,7 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ class TActiveRecordBelongsTo extends TActiveRecordRelation diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php index 92fe495a..330d7c39 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * Loads base active record relations class. */ @@ -63,7 +65,7 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ class TActiveRecordHasMany extends TActiveRecordRelation diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php index 1b58f112..449739e3 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * Loads base active record relations class. */ @@ -79,7 +81,7 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ class TActiveRecordHasManyAssociation extends TActiveRecordRelation diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php index 46c4d9fb..005ad98c 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * Loads base active record relationship class. */ @@ -80,7 +82,7 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ class TActiveRecordHasOne extends TActiveRecordRelation diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php b/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php index 7fe2d468..51bcaee2 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * Load active record relationship context. */ @@ -20,7 +22,7 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelationContext'); * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ abstract class TActiveRecordRelation diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php index 961dcd91..862d9b4c 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php @@ -7,9 +7,11 @@ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations */ +namespace Prado\Data\ActiveRecord\Relations; + /** * TActiveRecordRelationContext holds information regarding record relationships * such as record relation property name, query criteria and foreign object record @@ -20,7 +22,7 @@ * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @version $Id$ - * @package System.Data.ActiveRecord.Relations + * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ class TActiveRecordRelationContext |