Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 17 | public function fromProfileData(array $data): KvkPaginatorInterface |
|
25 | { |
||
26 | 17 | return new KvkPaginator( |
|
27 | 17 | $this->extractIntegerOrNull('itemsPerPage', $data), |
|
28 | 17 | $this->extractIntegerOrNull('startPage', $data), |
|
29 | 17 | $this->extractIntegerOrNull('totalItems', $data), |
|
30 | 17 | $this->extractCompanies($data['items']), |
|
31 | 17 | $this->extractStringOrNull('nextLink', $data), |
|
32 | 17 | $this->extractStringOrNull('previousLink', $data) |
|
33 | ); |
||
34 | } |
||
35 | |||
50 |