yrizos/echidna

View on GitHub
src/CursorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Echidna;

interface CursorInterface extends \Iterator, \Countable, ResultInterface
{

    public function __construct(\MongoCursor $cursor, MapperInterface $mapper = null);

    public function setCursor(\MongoCursor $cursor);

    public function getCursor();

    public function getData();

}