Files
yii/tests/framework/base/NewFormModel.php
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

10 lines
241 B
PHP

<?php
class NewFormModel extends CFormModel {
public function behaviors() {
return array(
'newBeforeValidateBehavior' => array(
'class' => 'NewBeforeValidateBehavior',
),
);
}
}