| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 2 | public function __construct(array $meta) |
|
| 14 | { |
||
| 15 | 2 | $this->currentPage = $meta['current_page'] ?? null; |
|
| 16 | 2 | $this->totalPages = $meta['total_pages'] ?? null; |
|
| 17 | 2 | $this->totalCount = $meta['total_count'] ?? null; |
|
| 18 | 2 | $this->perPage = $meta['per_page'] ?? null; |
|
| 19 | 2 | $this->exportUrl = $meta['export_url'] ?? null; |
|
| 20 | 2 | } |
|
| 22 |