-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix SchemaValidator with abstract child class in discriminator map #9096
Merged
Conversation
This file contains 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
derrabus
approved these changes
Oct 5, 2021
SenseException
approved these changes
Oct 6, 2021
mehldau
pushed a commit
to mehldau/orm
that referenced
this pull request
Oct 13, 2021
olsavmic
added a commit
to olsavmic/orm
that referenced
this pull request
Dec 17, 2021
…r map (doctrine#9096)" This reverts commit bbb68d0.
derrabus
added a commit
that referenced
this pull request
Dec 20, 2021
* Docs: consistency for FQCN, spacing, etc (#9232) * Docs: consistent spacing, consistent array-style, consistent FQCN, avoid double escaped slashes, avoid double quotes if not necessary * Docs: use special note block instead of markdown-based style * Docs: Quote FQCN in table with backticks to be compatible with all render engines * Drop all mentions API doc - it is not available anymore * Add missed FQCN for code snippets * Revert "Fix SchemaValidator with abstract child class in discriminator map (#9096)" (#9262) This reverts commit bbb68d0. * [docs] Fix wording for attributes=>parameters. (#9265) Co-authored-by: Andrii Dembitskyi <andrew.dembitskiy@gmail.com> Co-authored-by: olsavmic <molsavsky1@gmail.com> Co-authored-by: Benjamin Eberlei <kontakt@beberlei.de>
derrabus
added a commit
to derrabus/orm
that referenced
this pull request
Dec 26, 2021
* 2.11.x: Enable UnusedUse sniff again (doctrine#9267) Whitelist composer plugins used by this repository (doctrine#9286) Fix XML export for `change-tracking-policy` (doctrine#9285) Allow symfony/cache 6 (doctrine#9283) Put actual value instead of index inside $originalEntityData. (doctrine#9244) Fix return types of cache interfaces (doctrine#9271) Better explain limitations of DQL "DELETE" (doctrine#9281) Fix docblocks on nullable EM properties (doctrine#9273) Docs: use canonical order for phpdoc tags, add missed semicolon (doctrine#9190) Make PrimaryReadReplicaConnection enforcement explicit (doctrine#9239) Regenerate Psalm baseline (doctrine#9272) Improve compatibility with Doctrine DBAL 4 (doctrine#9266) [docs] Fix wording for attributes=>parameters. (doctrine#9265) Support for nesting attributes with PHP 8.1 (doctrine#9241) Revert "Fix SchemaValidator with abstract child class in discriminator map (doctrine#9096)" (doctrine#9262) Docs: consistency for FQCN, spacing, etc (doctrine#9232)
This was referenced Jan 12, 2023
Closed
mpdude
added a commit
to mpdude/doctrine2
that referenced
this pull request
Jan 17, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate abstract entity classes. Thus, we can relax the schema validator check as requested in doctrine#9095. The reasons given in doctrine#9142 no longer apply.
greg0ire
pushed a commit
to mpdude/doctrine2
that referenced
this pull request
Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate abstract entity classes. Thus, we can relax the schema validator check as requested in doctrine#9095. The reasons given in doctrine#9142 no longer apply. Fixes doctrine#9095 Closes doctrine#9096
greg0ire
pushed a commit
to mpdude/doctrine2
that referenced
this pull request
Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate abstract entity classes. Thus, we can relax the schema validator check as requested in doctrine#9095. The reasons given in doctrine#9142 no longer apply. Fixes doctrine#9095 Closes doctrine#9096
greg0ire
pushed a commit
to mpdude/doctrine2
that referenced
this pull request
Feb 5, 2023
Since doctrine#10411 has been merged, no more need to specify all intermediate abstract entity classes. Thus, we can relax the schema validator check as requested in doctrine#9095. The reasons given in doctrine#9142 no longer apply. Fixes doctrine#9095
derrabus
added a commit
to derrabus/orm
that referenced
this pull request
Feb 7, 2023
* 2.14.x: Remove calls to assertObjectHasAttribute() (doctrine#10502) Remove calls to withConsecutive() (doctrine#10501) Use recognized array key Fix doctrine#9095 by re-applying doctrine#9096 Use linebreaks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #9095.