Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
18 | 14 | public function getFilledText(?IPositions $positions): string |
|
19 | { |
||
20 | 14 | if (!$this->kpgLang || !$positions) { |
|
21 | 1 | return ''; |
|
22 | } |
||
23 | 14 | return $this->getKpgLang()->kpgShowResults( |
|
24 | 14 | $positions->getPager()->getOffset() + 1, |
|
25 | 14 | min($positions->getPager()->getOffset() + $positions->getPager()->getLimit(), $positions->getPager()->getMaxResults()), |
|
26 | 14 | $positions->getPager()->getMaxResults() |
|
27 | ); |
||
30 |