summaryrefslogtreecommitdiffstats
path: root/src/Reader.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Reader.php')
-rw-r--r--src/Reader.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Reader.php b/src/Reader.php
index 080cc79..7952875 100644
--- a/src/Reader.php
+++ b/src/Reader.php
@@ -61,6 +61,16 @@ class Reader extends AbstractCsv
return $iterator;
}
+ protected function getOutputIterator()
+ {
+ $iterator = $this->getIterator();
+ $iterator = $this->applyIteratorFilter($iterator);
+ $iterator = $this->applyIteratorSortBy($iterator);
+ $iterator = $this->applyIteratorInterval($iterator);
+
+ return $iterator;
+ }
+
/**
* Apply a callback function on the CSV
*