Files
yii/tests/unit/framework/validators/ValidatorTestModel.php
2011-01-27 23:57:19 +00:00

13 lines
174 B
PHP

<?php
class ValidatorTestModel extends CFormModel
{
public $email;
public function rules()
{
return array(
array('email', 'email', 'allowEmpty' => false),
);
}
}