From a57ead00a69cd5240dd7549fa3a7da8d4e717749 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Mon, 20 Jun 2011 13:30:47 +0000 Subject: further polishing --- framework/Base/TBehavior.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'framework/Base/TBehavior.php') diff --git a/framework/Base/TBehavior.php b/framework/Base/TBehavior.php index b2833140..4e0b8454 100644 --- a/framework/Base/TBehavior.php +++ b/framework/Base/TBehavior.php @@ -1,6 +1,6 @@ * @link http://www.yiiframework.com/ @@ -9,7 +9,7 @@ */ /** - * CBehavior is a convenient base class for behavior classes. + * TBehavior is a convenient base class for behavior classes. * @author Qiang Xue * @version $Id: CBehavior.php 564 2009-01-21 22:07:10Z qiang.xue $ * @package system.base @@ -38,7 +38,7 @@ class TBehavior extends TComponent implements IBehavior * The default implementation will set the {@link owner} property * and attach event handlers as declared in {@link events}. * Make sure you call the parent implementation if you override this method. - * @param CComponent the component that this behavior is to be attached to. + * @param TComponent the component that this behavior is to be attached to. */ public function attach($owner) { @@ -52,7 +52,7 @@ class TBehavior extends TComponent implements IBehavior * The default implementation will unset the {@link owner} property * and detach event handlers declared in {@link events}. * Make sure you call the parent implementation if you override this method. - * @param CComponent the component that this behavior is to be detached from. + * @param TComponent the component that this behavior is to be detached from. */ public function detach($owner) { @@ -101,12 +101,12 @@ interface IBehavior { /** * Attaches the behavior object to the component. - * @param CComponent the component that this behavior is to be attached to. + * @param TComponent the component that this behavior is to be attached to. */ public function attach($component); /** * Detaches the behavior object from the component. - * @param CComponent the component that this behavior is to be detached from. + * @param TComponent the component that this behavior is to be detached from. */ public function detach($component); /** -- cgit v1.2.3