We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DOCTRINE_DBAL_210
Doctrine\DBAL\Types\Type
For example, if using custom types:
<?php \Doctrine\DBAL\Types\Type::addType('money', 'My\Project\Types\MoneyType');
would be updated to:
<?php \Doctrine\DBAL\Types\Types::addType('money', 'My\Project\Types\MoneyType');
Which is invalid since these methods only exist on the Doctrine\DBAL\Types\Type version.
Introduced in rectorphp/rector#2514.
The text was updated successfully, but these errors were encountered:
Add tests for DoctrineDBAL210Set to prove rectorphp#100
ec034ee
Change DOCTRINE_DBAL_210 set to only change constants. Fixes rectorph…
d2fe38a
…p#100
fixed at #104
Sorry, something went wrong.
No branches or pull requests
For example, if using custom types:
would be updated to:
Which is invalid since these methods only exist on the
Doctrine\DBAL\Types\Type
version.Introduced in rectorphp/rector#2514.
The text was updated successfully, but these errors were encountered: