diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-21 10:18:43 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-21 10:18:43 +0100 |
commit | 53e4cd65205ac33d7dbc61a767f467c1b896dfc6 (patch) | |
tree | 836c37fadf024e7c64926aae5e24d539f3979c49 /framework/Data/ActiveRecord | |
parent | ea2868ad7d79d440d40fbcb5773c9dcec3babbcc (diff) |
Removed @version doc comments
Diffstat (limited to 'framework/Data/ActiveRecord')
7 files changed, 0 insertions, 14 deletions
diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php b/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php index f3687b9b..ad995c30 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordBelongsTo.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -66,7 +65,6 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * <tt>with_team('location = ?', 'Madrid')</tt>. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php index 330d7c39..297c3eb2 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasMany.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -64,7 +63,6 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * arguments as other finder methods of TActiveRecord, e.g. <tt>with_players('age < ?', 35)</tt>. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php index 449739e3..41a4ab69 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasManyAssociation.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -80,7 +79,6 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * arguments as other finder methods of TActiveRecord. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php b/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php index 005ad98c..7bd54561 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordHasOne.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -81,7 +80,6 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelation'); * arguments as other finder methods of TActiveRecord, e.g. <tt>with_engine('capacity < ?', 3.8)</tt>. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php b/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php index 51bcaee2..cd115cbe 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordRelation.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -21,7 +20,6 @@ Prado::using('System.Data.ActiveRecord.Relations.TActiveRecordRelationContext'); * Base class for active record relationships. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php index 862d9b4c..30f423b7 100644 --- a/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php +++ b/framework/Data/ActiveRecord/Relations/TActiveRecordRelationContext.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations */ @@ -21,7 +20,6 @@ namespace Prado\Data\ActiveRecord\Relations; * constructor. * * @author Wei Zhuo <weizho[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Relations * @since 3.1 */ diff --git a/framework/Data/ActiveRecord/Scaffold/TScaffoldSearch.php b/framework/Data/ActiveRecord/Scaffold/TScaffoldSearch.php index 92c261fa..653f06fc 100644 --- a/framework/Data/ActiveRecord/Scaffold/TScaffoldSearch.php +++ b/framework/Data/ActiveRecord/Scaffold/TScaffoldSearch.php @@ -6,7 +6,6 @@ * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ - * @version $Id$ * @package Prado\Data\ActiveRecord\Scaffold */ @@ -31,7 +30,6 @@ Prado::using('System.Data.ActiveRecord.Scaffold.TScaffoldBase'); * are database dependent). * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @version $Id$ * @package Prado\Data\ActiveRecord\Scaffold * @since 3.1 */ |