Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Pz\LaravelDoctrine\Rest\Request; |
||
14 | 1 | public function rules() |
|
15 | { |
||
16 | return [ |
||
17 | // Query |
||
18 | 1 | '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 |