mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
[PR #11374] Create postGenerateComparisonSchema event #12979
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/doctrine/orm/pull/11374
State: closed
Merged: No
Schemas generated from metadata cause the event
ToolEvents::postGenerateSchemato be triggered in the methodSchemaTool::getSchemaFromMetadata. It would be helpful to do the same for schemas generated for comparison inSchemaTool::createSchemaForComparison. This PR introduces the new eventToolEvents::postGenerateComparisonSchema.PR relates to an attempt to fix doctrine/migrations#1406. It is a requirement of doctrine/migrations#1418 and doctrine/DoctrineMigrationsBundle#529.