Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 14 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
55 | 15 | public function setItems($items) |
|
56 | { |
||
57 | 15 | $this->items = $items; |
|
58 | 15 | $total = count($items); |
|
59 | 15 | $this->data = [ |
|
60 | 15 | 'index1' => 1, |
|
61 | 15 | 'index' => 0, |
|
62 | 15 | 'revindex1' => $total, |
|
63 | 15 | 'revindex' => $total - 1, |
|
64 | 15 | 'first' => true, |
|
65 | 15 | 'last' => false, |
|
66 | 15 | 'odd' => false, |
|
67 | 15 | 'even' => true, |
|
68 | 'length' => $total |
||
69 | 15 | ]; |
|
70 | 15 | } |
|
71 | |||
112 |