Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class UserRequest extends FormRequest |
||
11 | { |
||
12 | /** |
||
13 | * Determine if the user is authorized to make this request. |
||
14 | * |
||
15 | * @return bool |
||
16 | */ |
||
17 | public function authorize() |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Get the validation rules that apply to the request. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | public function rules() |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * Get custom messages for validator errors. |
||
51 | * |
||
52 | * @return array |
||
53 | */ |
||
54 | public function messages() |
||
63 |