-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes Countable interface from ReaderInterface
- Loading branch information
1 parent
363bd00
commit c96f66e
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
} |