| 1 | <?php |
||
| 14 | class IssueRequest extends FormRequest |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Determine if the user is authorized to make this request. |
||
| 18 | * |
||
| 19 | * @return bool |
||
| 20 | */ |
||
| 21 | public function authorize() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get the validation rules that apply to the request. |
||
| 28 | * |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | public function rules() |
||
| 37 | /** |
||
| 38 | * Get the error messages for the defined validation rules. |
||
| 39 | * |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public function messages() |
||
| 50 | |||
| 51 | protected function getValidatorInstance() |
||
| 64 | } |
||
| 65 |