Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function __construct( |
||
20 | $items, |
||
21 | $perPage, |
||
22 | $currentPage = null, |
||
23 | array $options = [] |
||
24 | ) { |
||
25 | parent::__construct($items, $perPage, $currentPage, $options); |
||
26 | |||
27 | if (isset($options['path'])) { |
||
28 | $this->path = Helper::appendSlashes( |
||
29 | $this->path, |
||
30 | $options['path'] |
||
31 | ); |
||
35 |