1 | <?php |
||
23 | class MongoDBPaginatorAdapter implements AdapterInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var Cursor |
||
27 | */ |
||
28 | protected $cursor; |
||
29 | |||
30 | /** |
||
31 | * Adapter constructor. |
||
32 | * |
||
33 | * @param Cursor $cursor |
||
34 | */ |
||
35 | public function __construct(Cursor $cursor) |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public function getItems($offset, $itemCountPerPage) |
||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | public function count() |
||
65 | } |
||
66 |