| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function rules() |
||
| 39 | { |
||
| 40 | // Do not validate `token` here since at this stage we can NOT generate viewable |
||
| 41 | // notification/error, and it is been processed through EmailVerificationBroker anyway |
||
| 42 | return ['email' => 'required|email|max:250|exists:'.config('rinvex.fort.tables.users').',email']; |
||
| 43 | } |
||
| 44 | |||
| 59 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.