Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function rules(): array |
||
26 | { |
||
27 | return [ |
||
28 | // name, email, subject and body are required |
||
29 | [['name', 'email', 'subject', 'body'], 'required'], |
||
30 | // email has to be a valid email address |
||
31 | ['email', 'email'], |
||
32 | // verifyCode needs to be entered correctly |
||
33 | ['verifyCode', \Yiisoft\Yii\Captcha\CaptchaValidator::class], |
||
34 | ]; |
||
37 |