| Total Complexity | 3 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | class LastPageAwarePagination extends Pagination | ||
| 14 | { | ||
| 15 | use YieldsItemsByLength; | ||
|  | |||
| 16 | |||
| 17 | /** | ||
| 18 | * Determine whether this pagination matches the configuration. | ||
| 19 | */ | ||
| 20 | 43 | public function matches(): bool | |
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Yield the paginated items. | ||
| 27 | * | ||
| 28 | * @return Traversable<int, mixed> | ||
| 29 | */ | ||
| 30 | 5 | public function getIterator(): Traversable | |
| 38 |