Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class BatchUpdateJobTask extends FormRequest |
||
16 | { |
||
17 | /** |
||
18 | * Determine if the user is authorized to make this request. |
||
19 | * |
||
20 | * @return boolean |
||
21 | */ |
||
22 | 4 | public function authorize(): bool |
|
23 | { |
||
24 | 4 | return true; |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * Get the validation rules that apply to the request. |
||
29 | * |
||
30 | * @return string[] |
||
31 | */ |
||
32 | 4 | public function rules(): array |
|
38 | ]; |
||
39 | } |
||
41 |