Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
PaginatedResult
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getIterator
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\Datalayers\Lists;
3
4use Apie\Core\Datalayers\Search\QuerySearch;
5use Apie\Core\Datalayers\ValueObjects\LazyLoadedListIdentifier;
6use Apie\Core\Entities\EntityInterface;
7use Apie\Core\Lists\ItemList;
8use Iterator;
9use IteratorAggregate;
10
11/**
12 * @template T of EntityInterface
13 * @implements IteratorAggregate<int, T>
14 */
15final class PaginatedResult implements IteratorAggregate
16{
17    /**
18     * @param LazyLoadedListIdentifier<T> $id
19     * @param ItemList<T> $list
20     */
21    public function __construct(
22        public LazyLoadedListIdentifier $id,
23        public readonly int $totalCount,
24        public readonly int $filteredCount,
25        public readonly ItemList $list,
26        public readonly int $pageNumber,
27        public readonly int $pageSize,
28        public readonly QuerySearch $querySearch
29    ) {
30    }
31
32    public function getIterator(): Iterator
33    {
34        return $this->list->getIterator();
35    }
36}