| Conditions | 5 |
| Paths | 5 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 5 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 32 | public function decorate(&$body, SearchCriteria $criteria) |
|
| 27 | { |
||
| 28 | 32 | if ($criteria->getLimit() || $criteria->getOffset()) |
|
| 29 | { |
||
| 30 | 17 | if (is_int($criteria->getOffset())) |
|
| 31 | { |
||
| 32 | 14 | $body['from'] = $criteria->getOffset(); |
|
| 33 | } |
||
| 34 | 17 | if (is_int($criteria->getLimit())) |
|
| 35 | { |
||
| 36 | 17 | $body['size'] = $criteria->getLimit(); |
|
| 37 | } |
||
| 38 | } |
||
| 39 | 32 | } |
|
| 40 | |||
| 42 |