Files
yii/tests/unit/framework/base/NewFormModel.php

10 lines
241 B
PHP

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