From a419c7c93b2ce5ad68e447516191983065aa5d2f Mon Sep 17 00:00:00 2001 From: sabzeta Date: Fri, 20 Sep 2013 15:27:05 +0300 Subject: [PATCH] Update query-builder.rst expresion substr changed to substring as of http://www.doctrine-project.org/jira/browse/DDC-382 --- docs/en/reference/query-builder.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/reference/query-builder.rst b/docs/en/reference/query-builder.rst index 63f1a872a..9a93190a5 100644 --- a/docs/en/reference/query-builder.rst +++ b/docs/en/reference/query-builder.rst @@ -448,8 +448,8 @@ complete list of supported helper methods available: // 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) - public function substr($x, $from, $len); // Returns Expr\Func + // Example - $qb->expr()->substring('u.firstname', 0, 1) + public function substring($x, $from, $len); // Returns Expr\Func // Example - $qb->expr()->lower('u.firstname') public function lower($x); // Returns Expr\Func