-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Update docs for latest Doctrine removals #9401
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
Comments
Some explanation about the entity code generator removal can be found here doctrine/orm#6418 |
Part of these updates can be done already (for instance, using |
btw, I'm quite sure some of these changes won't impact the Symfony doc:
|
@stof thanks for the details. I've updated the description to separate the issues between "doable now" and "wait for Doctrine 3". If there's any error, please edit the description. Thanks! |
regarding the mapping conversion and the entity generation, I think we should already work today on removing them from the Symfony documentation. The Doctrine team discourages their usage since years, so we should not push for it. |
Here's a list of everything removed in DBAL 3.0: doctrine/dbal#3518 |
I'm closing this one as fixed because I've verified that we no longer use features removed in 2.x. For the future 3.x, we'll take care of that when it's released. Thanks! |
Uh oh!
There was an error while loading. Please reload this page.
Latest Doctrine versions are removing features that we use on Symfony Docs. We should double check everything, remove no longer relevant docs and provide alternatives when possible:
Changes already included in Doctrine 2.x
(we can already make these changes in Symfony Docs)
App:User
no longer works, useUser::class
orApp\Entity\User
: doctrine/orm@63cb801::class
in annotations: doctrine/orm@cd590f2EntityManager::copy
: doctrine/orm@c4eb2b0convert:mapping
) and entity generation (generate:entity
): doctrine/orm@e4ce75aChanges planned for the upcoming Doctrine 3.x
(please don't make any of these changes until Doctrine 3 is released)
EntityManager::detach
: doctrine/orm@df397e1PDO::PARAM_*
,PDO::FETCH_*
,PDO::CASE_*
andPDO::PARAM_INPUT_OUTPUT
constants in the DBAL API is removed. \Doctrine\DBAL\Driver\PDOStatement does not extend \PDOStatement anymore: Remove hard dependency on PDO doctrine/dbal#2958The text was updated successfully, but these errors were encountered: