Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function rules(): array |
||
12 | { |
||
13 | return [ |
||
14 | 'name' => ['sometimes', 'string', 'max:191'], |
||
15 | 'email' => ['sometimes', 'string', 'max:191'], |
||
16 | 7 | 'sort_by' => ['sometimes', 'string', 'in:name,email'], |
|
17 | 'desc' => ['sometimes', 'boolean'], |
||
18 | 7 | 'per_page' => ['sometimes', 'integer', 'min:1', 'max:100'], |
|
19 | ]; |
||
22 |