diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Iterators/Query.php | 8 |
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 = []; |