Skip to content

Commit

Permalink
ResultSetInterface must extend Iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
leogr committed Dec 16, 2014
1 parent e304a4a commit 2a18a62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions library/ResultSet/ResultSetInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
namespace Matryoshka\Model\ResultSet;

use Countable;
use Iterator;
use Matryoshka\Model\Exception\InvalidArgumentException;
use Traversable;


/**
* Interface ResultSetInterface
*/
interface ResultSetInterface extends Traversable, Countable
interface ResultSetInterface extends Iterator, Countable
{

/**
Expand Down

0 comments on commit 2a18a62

Please sign in to comment.