You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling AbstractSchemaManager->introspectTable() (or the corresponding method in its subtypes) will trigger a deprecation as it calls listTableDetails() internally (which was deprecated in #5595).
Expected behaviour
introspectTable() isn't deprecated, so it shouldn't trigger a warning. The solution (as suggested by @greg0ire in the symfony slack) should be to use Deprecation::triggerIfCalledFromOutside within all instances of listTableDetails() rather than Deprecation::trigger
I will try to submit a PR. Just wanted to document it in case another maintainer has other thoughts.
The text was updated successfully, but these errors were encountered:
Bug Report
Summary
Calling
AbstractSchemaManager->introspectTable()
(or the corresponding method in its subtypes) will trigger a deprecation as it callslistTableDetails()
internally (which was deprecated in #5595).Expected behaviour
introspectTable()
isn't deprecated, so it shouldn't trigger a warning. The solution (as suggested by @greg0ire in the symfony slack) should be to useDeprecation::triggerIfCalledFromOutside
within all instances oflistTableDetails()
rather thanDeprecation::trigger
I will try to submit a PR. Just wanted to document it in case another maintainer has other thoughts.
The text was updated successfully, but these errors were encountered: