We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15e3a1 commit 252eb49Copy full SHA for 252eb49
tests/ResetPasswordTestKernel.php
@@ -87,6 +87,8 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
87
],
88
'orm' => [
89
'auto_generate_proxy_classes' => true,
90
+ 'controller_resolver' => ['auto_mapping' => false], // @see https://github.com/doctrine/DoctrineBundle/pull/1762
91
+ 'enable_lazy_ghost_objects' => true, // @see https://github.com/doctrine/DoctrineBundle/pull/1733
92
'auto_mapping' => true,
93
'mappings' => [
94
'App' => [
@@ -97,6 +99,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
97
99
'alias' => 'App',
98
100
101
102
+ 'report_fields_where_declared' => true, // @see https://github.com/doctrine/DoctrineBundle/pull/1661
103
104
]);
105
0 commit comments