1
0
mirror of synced 2025-01-31 20:41:44 +03:00

Fixed a very minor typo

This commit is contained in:
Javier Eguiluz 2014-11-25 09:41:13 +01:00
parent 88ce68e733
commit 7e64d606d2

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'); $query = $em->createQuery('SELECT u FROM CmsUser u WHERE ((u.id + 5000) * u.id + 3) < 10000000');
$users = $query->getResult(); // array of ForumUser objects $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 .. code-block:: php