-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Avoid triple stars #11885
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Avoid triple stars #11885
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -71,8 +71,8 @@ Configuration Options | |||||||||
| The following sections describe all the configuration options | ||||||||||
| available on a ``Doctrine\ORM\Configuration`` instance. | ||||||||||
|
|
||||||||||
| Proxy Directory (***REQUIRED***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Proxy Directory (**REQUIRED**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -85,8 +85,8 @@ classes. For a detailed explanation on proxy classes and how they | |||||||||
| are used in Doctrine, refer to the "Proxy Objects" section further | ||||||||||
| down. | ||||||||||
|
|
||||||||||
| Proxy Namespace (***REQUIRED***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Proxy Namespace (**REQUIRED**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -98,8 +98,8 @@ Gets or sets the namespace to use for generated proxy classes. For | |||||||||
| a detailed explanation on proxy classes and how they are used in | ||||||||||
| Doctrine, refer to the "Proxy Objects" section further down. | ||||||||||
|
|
||||||||||
| Metadata Driver (***REQUIRED***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Metadata Driver (**REQUIRED**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -144,8 +144,8 @@ accept either a single directory as a string or an array of | |||||||||
| directories. With this feature a single driver can support multiple | ||||||||||
| directories of Entities. | ||||||||||
|
|
||||||||||
| Metadata Cache (***RECOMMENDED***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Metadata Cache (**RECOMMENDED**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -166,8 +166,8 @@ For development you should use an array cache like | |||||||||
| ``Symfony\Component\Cache\Adapter\ArrayAdapter`` | ||||||||||
| which only caches data on a per-request basis. | ||||||||||
|
|
||||||||||
| Query Cache (***RECOMMENDED***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Query Cache (**RECOMMENDED**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -189,8 +189,8 @@ For development you should use an array cache like | |||||||||
| ``Symfony\Component\Cache\Adapter\ArrayAdapter`` | ||||||||||
| which only caches data on a per-request basis. | ||||||||||
|
|
||||||||||
| SQL Logger (***Optional***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| SQL Logger (**Optional**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| .. code-block:: php | ||||||||||
|
|
||||||||||
|
|
@@ -202,8 +202,8 @@ Gets or sets the logger to use for logging all SQL statements | |||||||||
| executed by Doctrine. The logger class must implement the | ||||||||||
| deprecated ``Doctrine\DBAL\Logging\SQLLogger`` interface. | ||||||||||
|
|
||||||||||
| Auto-generating Proxy Classes (***OPTIONAL***) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
| Auto-generating Proxy Classes (**OPTIONAL**) | ||||||||||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||||||||
|
|
||||||||||
| Proxy classes can either be generated manually through the Doctrine | ||||||||||
| Console or automatically at runtime by Doctrine. The configuration | ||||||||||
|
|
@@ -446,7 +446,7 @@ correctly if sub-namespaces use different metadata driver | |||||||||
| implementations. | ||||||||||
|
|
||||||||||
|
|
||||||||||
| Default Repository (***OPTIONAL***) | ||||||||||
| Default Repository (**OPTIONAL**) | ||||||||||
| ----------------------------------- | ||||||||||
|
|
||||||||||
| Specifies the FQCN of a subclass of the EntityRepository. | ||||||||||
|
|
@@ -461,7 +461,7 @@ That will be available for all entities without a custom repository class. | |||||||||
| The default value is ``Doctrine\ORM\EntityRepository``. | ||||||||||
| Any repository class must be a subclass of EntityRepository otherwise you got an ORMException | ||||||||||
|
|
||||||||||
| Ignoring entities (***OPTIONAL***) | ||||||||||
| Ignoring entities (**OPTIONAL**) | ||||||||||
| ----------------------------------- | ||||||||||
|
Comment on lines
+464
to
465
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
|
||||||||||
| Specifies the Entity FQCNs to ignore. | ||||||||||
|
|
||||||||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.