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
The Type::getName method was deprecated and removed based on the argument that it serves no purpose c826c18 8b7c622 8910d85
However I disagree, I'm building a Diff command very much like doctrine:migration:diff that will output a migration using the schema builder rather than direct SQL (That I'm hoping to get into the doctrine/migration package as well), and I need the ability to reverse the Type name from an instanciated class, without it the ability to reverse the Type to it's string counterpart which is required when doing ->addColumn('colname', 'type)` is lost
I'd be in favor of reverting the removal before the stable release of 4.x, or to add the possibility to pass a class name for a type to addColumn so that this feature is still possible
The text was updated successfully, but these errors were encountered:
Feature Request
Summary
The
Type::getName
method was deprecated and removed based on the argument that it serves no purposec826c18
8b7c622
8910d85
However I disagree, I'm building a
Diff command
very much likedoctrine:migration:diff
that will output a migration using the schema builder rather than direct SQL (That I'm hoping to get into thedoctrine/migration
package as well), and I need the ability to reverse the Type name from an instanciated class, without it the ability to reverse theType
to it's string counterpart which is required when doing->addColumn('colname', 'type
)` is lostI'd be in favor of reverting the removal before the stable release of
4.x
, or to add the possibility to pass a class name for a type toaddColumn
so that this feature is still possibleThe text was updated successfully, but these errors were encountered: