diff --git a/tests/Doctrine/EntityRegeneratorTest.php b/tests/Doctrine/EntityRegeneratorTest.php index 4d2b251cb..813946b3b 100644 --- a/tests/Doctrine/EntityRegeneratorTest.php +++ b/tests/Doctrine/EntityRegeneratorTest.php @@ -162,6 +162,10 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load 'utf8' => true, ], 'http_method_override' => false, + 'handle_all_throwables' => true, + 'php_errors' => [ + 'log' => true, + ], ]); $dbal = [ @@ -179,6 +183,9 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load 'type' => 'attribute', ], ], + 'controller_resolver' => [ + 'auto_mapping' => false, + ], ]; /* @legacy Remove conditional when doctrine/persistence <3.1 are no longer supported. */ @@ -222,6 +229,10 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load 'utf8' => true, ], 'http_method_override' => false, + 'handle_all_throwables' => true, + 'php_errors' => [ + 'log' => true, + ], ]); $dbal = [ @@ -240,6 +251,9 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load 'alias' => 'EntityRegeneratorApp', ], ], + 'controller_resolver' => [ + 'auto_mapping' => false, + ], ]; /* @legacy Remove conditional when doctrine/persistence <3.1 are no longer supported. */