1
0
mirror of synced 2025-03-06 21:06:16 +03:00

fixed little typo inside documentation

This commit is contained in:
Alessandro Minoccheri 2017-10-11 17:04:29 +02:00
parent aac0204611
commit b1466e6d3e
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ Doctrine Query Language
=========================== ===========================
DQL stands for Doctrine Query Language and is an Object DQL stands for Doctrine Query Language and is an Object
Query Language derivate that is very similar to the Hibernate Query Language derivative that is very similar to the Hibernate
Query Language (HQL) or the Java Persistence Query Language (JPQL). Query Language (HQL) or the Java Persistence Query Language (JPQL).
In essence, DQL provides powerful querying capabilities over your In essence, DQL provides powerful querying capabilities over your

View File

@ -159,7 +159,7 @@ This strategy is very efficient for querying across all types in
the hierarchy or for specific types. No table joins are required, the hierarchy or for specific types. No table joins are required,
only a WHERE clause listing the type identifiers. In particular, only a WHERE clause listing the type identifiers. In particular,
relationships involving types that employ this mapping strategy are relationships involving types that employ this mapping strategy are
very performant. very performing.
There is a general performance consideration with Single Table There is a general performance consideration with Single Table
Inheritance: If the target-entity of a many-to-one or one-to-one Inheritance: If the target-entity of a many-to-one or one-to-one

View File

@ -63,7 +63,7 @@ This has several benefits:
- The API is much simpler than the usual ``ResultSetMapping`` API. - The API is much simpler than the usual ``ResultSetMapping`` API.
One downside is that the builder API does not yet support entities One downside is that the builder API does not yet support entities
with inheritance hierachies. with inheritance hierarchies.
.. code-block:: php .. code-block:: php