diff options
author | ctrlaltca@gmail.com <> | 2011-06-20 13:30:47 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-06-20 13:30:47 +0000 |
commit | a57ead00a69cd5240dd7549fa3a7da8d4e717749 (patch) | |
tree | 79f1c6af4172564fcdc12dea354d43adc71d8ebc /framework/Base/TModelEvent.php | |
parent | 6dca6e1b868f5456f3151c002113705405099530 (diff) |
further polishing
Diffstat (limited to 'framework/Base/TModelEvent.php')
-rw-r--r-- | framework/Base/TModelEvent.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/Base/TModelEvent.php b/framework/Base/TModelEvent.php index 1bf42a2b..c785b997 100644 --- a/framework/Base/TModelEvent.php +++ b/framework/Base/TModelEvent.php @@ -1,6 +1,6 @@ <?php /** - * CModelEvent class file. + * TModelEvent class file. * * @author Qiang Xue <qiang.xue@gmail.com> * @link http://www.yiiframework.com/ @@ -11,12 +11,12 @@ Prado::using('System.Base.TEvent'); /** - * CModelEvent class. + * TModelEvent class. * - * CModelEvent represents the event parameters needed by events raised by a model. + * TModelEvent represents the event parameters needed by events raised by a model. * * @author Qiang Xue <qiang.xue@gmail.com> - * @version $Id: CModelEvent.php 1093 2009-06-05 13:09:17Z qiang.xue $ + * @version $Id: TModelEvent.php 1093 2009-06-05 13:09:17Z qiang.xue $ * @package system.base * @since 1.0 */ @@ -24,7 +24,7 @@ class TModelEvent extends TEvent { /** * @var boolean whether the model is valid. Defaults to true. - * If this is set false, {@link CModel::validate()} will return false and quit the current validation process. + * If this is set false, {@link TModel::validate()} will return false and quit the current validation process. */ public $isValid=true; } |