-
Notifications
You must be signed in to change notification settings - Fork 62
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
Depreciation to fix #188
Comments
@dmaicher what exactly is the problem? |
Right, you have to implement this interface. |
Does it mean that it will be impossible to update this bundle for Symfony 6 ? |
No. The deprecation is coming from |
Closing as there is nothing we can do here to get rid of the deprecation. |
Did anyone find a solution on how to silence this error? (Symfony 6, PHP 8.1) Or is there "official" recommendation on how to avoid it? |
From this StackOverflow thread: you can add this lines to the phpunit.xml file: <php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php> |
yes, it works for PHPUnit execution. However, the same deprecation message is displayed for example when you run: bin/console doctrine:database:create --env=test |
upgrading to "dama/doctrine-test-bundle": "v7.2.*" fixed |
Unfortunately it doesn't, 7.2.1 still It was fixed in 629d385 which will be part of 8.0 |
Hello, when launching my tests from Symfony 5.4 (PHP 8.0) app, I've a depreciation :
The text was updated successfully, but these errors were encountered: