| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 1 | public function rules() |
|
| 20 | { |
||
| 21 | return [ |
||
| 22 | 1 | ['email', 'trim'], |
|
| 23 | ['email', 'required'], |
||
| 24 | ['email', 'email'], |
||
| 25 | ['email', 'exist', |
||
| 26 | 'targetClass' => '\zacksleo\yii2\backend\models\Admin', |
||
| 27 | 'filter' => ['status' => Admin::STATUS_ACTIVE], |
||
| 28 | 'message' => 'There is no user with this email address.' |
||
| 29 | ], |
||
| 30 | ]; |
||
| 31 | } |
||
| 32 | |||
| 62 |