Files
yii/tests/framework/base/BehaviorTestController.php
Carsten Brandt 370e347138 doc comments
2012-11-30 17:01:22 +01:00

15 lines
214 B
PHP

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