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