| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class CursorAwarePagination extends Pagination |
||
| 15 | { |
||
| 16 | use YieldsItemsByCursor; |
||
|
|
|||
| 17 | |||
| 18 | /** |
||
| 19 | * Determine whether this pagination matches the configuration. |
||
| 20 | */ |
||
| 21 | 50 | public function matches(): bool |
|
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Yield the paginated items. |
||
| 31 | * |
||
| 32 | * @return Traversable<int, mixed> |
||
| 33 | */ |
||
| 34 | 2 | public function getIterator(): Traversable |
|
| 44 |