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 |
||
26 | 7 | public function rules(): array |
|
27 | { |
||
28 | return [ |
||
29 | 7 | 'name' => ['sometimes', 'string', 'max:191'], |
|
30 | 'email' => ['sometimes', 'string', 'max:191'], |
||
31 | 'sortBy' => ['sometimes', 'string', 'in:name,email'], |
||
32 | 'desc' => ['sometimes', 'boolean'], |
||
33 | 'perPage' => ['sometimes', 'integer', 'min:1', 'max:100'], |
||
34 | ]; |
||
37 |