From 6ac0ae3c87222a37c75e564e7a8a2255ac82bf7e Mon Sep 17 00:00:00 2001 From: Stepan Anchugov Date: Tue, 20 Jan 2015 15:35:47 +0500 Subject: [PATCH] Update migration_2_5.rst Fixed some formatting issues and typos. --- docs/en/changelog/migration_2_5.rst | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/en/changelog/migration_2_5.rst b/docs/en/changelog/migration_2_5.rst index 8fbb855d3..52aee9b71 100644 --- a/docs/en/changelog/migration_2_5.rst +++ b/docs/en/changelog/migration_2_5.rst @@ -115,7 +115,7 @@ The newly introduced second-level-cache works a bit differently. Instead of saving objects in memory, it saves them in a fast in-memory cache such as Memcache, Redis, Riak or MongoDB. Additionally it allows saving the result of more complex queries than by primary key. Summarized this feature works -like the existing Query result cache, but it much more powerful. +like the existing Query result cache, but it is much more powerful. As an example lets cache an entity Country that is a relation to the User entity. We always want to display the country, but avoid the additional @@ -243,8 +243,8 @@ This feature was contributed by `Adrian Olek `_. - `Pull Request `_ -SQLFilter API: Check if parameter isset -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +SQLFilter API: Check if a parameter is set +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can now check in your SQLFilter if a parameter was set. This allows to more easily control which features of a filter to enable or disable. @@ -320,27 +320,27 @@ Better support for EntityManagerInterface Many of the locations where previously only the ``Doctrine\ORM\EntityManager`` was allowed are now changed to accept the ``EntityManagerInterface`` that was introduced in 2.4. This allows you to more easily use the decorator pattern -to extend the EntityManager if you need. Its still not replaced everywhere, +to extend the EntityManager if you need. It`s still not replaced everywhere, so you still have to be careful. DQL Improvements ~~~~~~~~~~~~~~~~ -1. It is now possible to add functions to the ORDER BY clause in DQL statements: +1. It is now possible to add functions to the ``ORDER BY`` clause in DQL statements: .. code-block:: php getResult(); -6. Expressions inside COUNT() now allowed +6. Expressions inside ``COUNT()`` now allowed .. code-block:: php