Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class PasswordRequest extends FormRequest |
||
9 | { |
||
10 | /** |
||
11 | * Determine if the user is authorized to make this request. |
||
12 | * |
||
13 | * @return bool |
||
14 | */ |
||
15 | public function authorize() |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Get the validation rules that apply to the request. |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | public function rules() |
||
31 | ]; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Get the validation attributes that apply to the request. |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | public function attributes() |
||
46 |