1 | <?php |
||
9 | class AccountInfoRequest extends FormRequest |
||
10 | { |
||
11 | /** |
||
12 | * Determine if the user is authorized to make this request. |
||
13 | * |
||
14 | * @return bool |
||
15 | */ |
||
16 | public function authorize() |
||
21 | |||
22 | /** |
||
23 | * Restrict the fields that the user can change. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | protected function validationData() |
||
31 | |||
32 | /** |
||
33 | * Get the validation rules that apply to the request. |
||
34 | * |
||
35 | * @return array |
||
36 | */ |
||
37 | public function rules() |
||
50 | } |
||
51 |