| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | public function create(array $params, string $baseUrl): Pagination |
||
| 49 | { |
||
| 50 | return new Pagination( |
||
| 51 | $params, |
||
| 52 | $baseUrl, |
||
| 53 | $this->options->getNumberCount(), |
||
| 54 | $this->options->getDefaultPageSize(), |
||
| 55 | $this->options->getPageSizeOptions(), |
||
| 56 | [], |
||
| 57 | $this->options->getAttributes() |
||
| 58 | ); |
||
| 61 |