1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Merge pull request #239 from adrienbrault/master

Fix $qb->expr() PHPDoc @return type.
This commit is contained in:
Guilherme Blanco 2011-12-23 09:16:50 -08:00
commit 9b1092726d
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ class Expr
* Creates an ASCending order expression.
*
* @param $sort
* @return OrderBy
* @return Expr\OrderBy
*/
public function asc($expr)
{
@ -86,7 +86,7 @@ class Expr
* Creates a DESCending order expression.
*
* @param $sort
* @return OrderBy
* @return Expr\OrderBy
*/
public function desc($expr)
{

View File

@ -119,7 +119,7 @@ class QueryBuilder
* For more complex expression construction, consider storing the expression
* builder object in a local variable.
*
* @return Expr
* @return Query\Expr
*/
public function expr()
{