Conditions | 3 |
Paths | 3 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.1406 |
Changes | 0 |
1 | <?php |
||
30 | 1 | public function limit($limit, $offset = null) |
|
31 | { |
||
32 | 1 | if ($limit < 1) { |
|
33 | throw new InvalidArgumentException("limit out of range: {$limit}"); |
||
34 | } |
||
35 | |||
36 | 1 | if ($offset < 0) { |
|
37 | throw new InvalidArgumentException("offset out of range: {$offset}"); |
||
38 | } |
||
39 | |||
40 | 1 | $this->limit = $limit; |
|
41 | 1 | $this->offset = $offset; |
|
42 | |||
43 | 1 | return $this; |
|
44 | } |
||
45 | |||
77 |