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

13 lines
174 B
PHP

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