Skip to content

Commit

Permalink
sql table fix doc block
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Mar 21, 2015
1 parent 3d84057 commit d944b0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/PSX/Sql/TableQueryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface TableQueryInterface
*
* @param integer $startIndex
* @param integer $count
* @param integer $sortBy
* @param string $sortBy
* @param integer $sortOrder
* @param PSX\Sql\Condition $condition
* @return array
Expand All @@ -55,14 +55,14 @@ public function getBy(Condition $condition);
* Returns an record by the condition
*
* @param PSX\Sql\Condition $condition
* @return array
* @return PSX\Data\RecordInterface
*/
public function getOneBy(Condition $condition);

/**
* Returns an record by the primary key
*
* @return array
* @return PSX\Data\RecordInterface
*/
public function get($id);

Expand Down

0 comments on commit d944b0f

Please sign in to comment.