| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 7 | class BatchUpdateJobTask 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 | ||
| 15 |     { | ||
| 16 | return true; | ||
| 17 | } | ||
| 18 | |||
| 19 | /** | ||
| 20 | * Get the validation rules that apply to the request. | ||
| 21 | * | ||
| 22 | * @return string[] | ||
| 23 | */ | ||
| 24 | public function rules(): array | ||
| 30 | ]; | ||
| 31 | } | ||
| 33 |