Skip to content

Commit

Permalink
Removes Countable interface from ReaderInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
sagikazarmark committed Jan 29, 2015
1 parent 363bd00 commit c96f66e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Ddeboer/DataImport/Reader/ReaderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@
*
* @author David de Boer <[email protected]>
*/
interface ReaderInterface extends \Iterator, \Countable
interface ReaderInterface extends \Iterator
{
/**
* Get the field (column, property) names
*
* @return array
*/
public function getFields();

// Don't add count() to interface: see https://github.com/ddeboer/data-import/pull/5
}

0 comments on commit c96f66e

Please sign in to comment.