summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-11 12:43:59 +0100
committerIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-11 12:43:59 +0100
commitfd374c7f01f198f8e60fa042c2fe87df2cae63fc (patch)
tree220027aabf2b080f17edfa32c9e5ede95595fccd /src
parentfcd9b591335f273bd78c1bc8a4f51dcdafbb7083 (diff)
downloadcsv-fd374c7f01f198f8e60fa042c2fe87df2cae63fc.zip
csv-fd374c7f01f198f8e60fa042c2fe87df2cae63fc.tar.gz
csv-fd374c7f01f198f8e60fa042c2fe87df2cae63fc.tar.bz2
improve documentation
Diffstat (limited to 'src')
-rw-r--r--src/Iterators/Query.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Iterators/Query.php b/src/Iterators/Query.php
index 26d85de..90480f8 100644
--- a/src/Iterators/Query.php
+++ b/src/Iterators/Query.php
@@ -28,16 +28,16 @@ use LimitIterator;
trait Query
{
/**
- * Callable function to filter the iterator
+ * Callables to filter the iterator
*
- * @var array
+ * @var callable[]
*/
protected $iterator_filters = [];
/**
- * Callable function to sort the ArrayObject
+ * Callables to sort the iterator
*
- * @var callable
+ * @var callable[]
*/
protected $iterator_sort_by = [];