1
0
mirror of synced 2025-03-21 15:33:51 +03:00

Fixed inline example of concat method

This commit is contained in:
Calum Brodie 2012-05-31 14:08:56 +02:00
parent 34f7ccb5fa
commit e41704b211

View File

@ -356,7 +356,7 @@ complete list of supported helper methods available:
// Example - $qb->expr()->trim('u.firstname')
public function trim($x); // Returns Expr\Func
// Example - $qb->expr()->concat('u.firstname', $qb->expr()->concat(' ', 'u.lastname'))
// Example - $qb->expr()->concat('u.firstname', $qb->expr()->concat($qb->expr()->literal(' '), 'u.lastname'))
public function concat($x, $y); // Returns Expr\Func
// Example - $qb->expr()->substr('u.firstname', 0, 1)