| Total Complexity | 4 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class ResultRequest extends FormRequest |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Determine if the user is authorized to make this request. |
||
| 11 | * |
||
| 12 | * @return bool |
||
| 13 | */ |
||
| 14 | public function authorize() |
||
| 15 | { |
||
| 16 | // only allow updates if the user is logged in |
||
| 17 | return backpack_auth()->check(); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get the validation rules that apply to the request. |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | public function rules() |
||
| 26 | { |
||
| 27 | return [ |
||
| 28 | // 'name' => 'required|min:5|max:255' |
||
| 29 | ]; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the validation attributes that apply to the request. |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function attributes() |
||
| 40 | // |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Get the validation messages that apply to the request. |
||
| 46 | * |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function messages() |
||
| 56 |