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