| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1 |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | 7 | public function rules() |
|
| 21 | { |
||
| 22 | return [ |
||
| 23 | 7 | 'page' => 'nullable|numeric', |
|
| 24 | 'perPage' => 'required|numeric', |
||
| 25 | 'sortField' => 'required|string', |
||
| 26 | 'sortType' => 'required|string', |
||
| 27 | 'name' => 'nullable|string', |
||
| 28 | 'city' => 'nullable|string', |
||
| 29 | 'equipment' => 'nullable|string', |
||
| 30 | ]; |
||
| 33 |