Skip to content

Commit

Permalink
Fixing documentation of method Query#zipWith
Browse files Browse the repository at this point in the history
Fixing documentation of method Query#zipWith to match the declaration in CollectionInterface.
  • Loading branch information
pedro-stanaka committed Sep 22, 2016
1 parent 159b1ad commit e3bb11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ORM/Query.php
Expand Up @@ -63,7 +63,7 @@
* @method \Cake\Collection\CollectionInterface stopWhen(callable $c) Returns each row until the callable returns true.
* @method \Cake\Collection\CollectionInterface zip(array|\Traversable $c) Returns the first result of both the query and $c in an array,
* then the second results and so on.
* @method \Cake\Collection\CollectionInterface zipWith(...$collections, callable $c) Returns each of the results out of calling $c
* @method \Cake\Collection\CollectionInterface zipWith($collections, callable $callable) Returns each of the results out of calling $c
* with the first rows of the query and each of the items, then the second rows and so on.
* @method \Cake\Collection\CollectionInterface chunk($size) Groups the results in arrays of $size rows each.
* @method bool isEmpty() Returns true if this query found no results.
Expand Down

0 comments on commit e3bb11a

Please sign in to comment.