mirror of
https://github.com/yiisoft/yii.git
synced 2026-02-20 01:21:22 +01:00
13 lines
174 B
PHP
13 lines
174 B
PHP
<?php
|
|
class ValidatorTestModel extends CFormModel
|
|
{
|
|
public $email;
|
|
|
|
public function rules()
|
|
{
|
|
return array(
|
|
array('email', 'email', 'allowEmpty' => false),
|
|
);
|
|
}
|
|
}
|