Files
yii/tests/framework/base/BehaviorTestController.php
2012-11-30 15:43:14 +01:00

15 lines
192 B
PHP

<?php
/**
*
*/
class BehaviorTestController extends CController
{
public $behaviorEventHandled=0;
public function onTestEvent()
{
$this->raiseEvent("onTestEvent", new CEvent());
}
}