1
0
mirror of synced 2025-01-09 18:47:10 +03:00

Merge pull request #1192 from javiereguiluz/patch-4

Fixed a very minor typo
This commit is contained in:
Steve Müller 2014-11-25 09:42:10 +01:00
commit bf5003f25e

View File

@ -302,7 +302,7 @@ With Arithmetic Expression in WHERE clause:
$query = $em->createQuery('SELECT u FROM CmsUser u WHERE ((u.id + 5000) * u.id + 3) < 10000000');
$users = $query->getResult(); // array of ForumUser objects
Retrieve user entities with Arithmetic Expression in ORDER close, using the ``HIDDEN`` keyword:
Retrieve user entities with Arithmetic Expression in ORDER clause, using the ``HIDDEN`` keyword:
.. code-block:: php