Skip to content

Commit

Permalink
collection: better phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Apr 24, 2015
1 parent abbf351 commit 1f0e311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Collection/ICollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function findBy(array $where);
* Returns new instance of collection.
* @param string|array $column column name or array of column names
* @param string $direction sorting direction self::ASC or self::DESC
* @return static
* @return ICollection
*/
public function orderBy($column, $direction = self::ASC);

Expand All @@ -57,7 +57,7 @@ public function orderBy($column, $direction = self::ASC);
* Limits number of rows.
* @param int $limit
* @param int $offset
* @return static
* @return ICollection
*/
public function limitBy($limit, $offset = NULL);

Expand Down

0 comments on commit 1f0e311

Please sign in to comment.