| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php namespace Pz\LaravelDoctrine\Rest\Request; |
||
| 14 | public function rules() |
||
| 15 | { |
||
| 16 | return [ |
||
| 17 | // Query |
||
| 18 | 'filter' => 'string', |
||
| 19 | |||
| 20 | // Pagination |
||
| 21 | 'page' => 'array', |
||
| 22 | 'page.offset' => 'required_with:page|numeric', |
||
| 23 | 'page.limit' => 'required_with:page|numeric', |
||
| 24 | |||
| 25 | // Sorting |
||
| 26 | 'sort' => 'string', |
||
| 27 | ]; |
||
| 96 |