Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cceec1 commit 36169d6Copy full SHA for 36169d6
src/Symfony/Bridge/PhpUnit/bootstrap.php
@@ -34,6 +34,11 @@
34
35
if (class_exists(Deprecation::class)) {
36
Deprecation::withoutDeduplication();
37
+
38
+ if (\PHP_VERSION_ID < 80000) {
39
+ // Ignore deprecations about the annotation mapping driver when it's not possible to move to the attribute driver yet
40
+ Deprecation::ignoreDeprecations('https://github.com/doctrine/orm/issues/10098');
41
+ }
42
}
43
44
if (!class_exists(AnnotationRegistry::class, false) && class_exists(AnnotationRegistry::class)) {
0 commit comments