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.
prod
1 parent dc5565b commit 2c81b5cCopy full SHA for 2c81b5c
symfony/console/5.3/bin/console
@@ -13,5 +13,8 @@ require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
13
return function (array $context) {
14
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
15
16
- return new Application($kernel);
+ $app = new Application($kernel);
17
+ $app->setCatchErrors('prod' === $context['APP_ENV']);
18
+
19
+ return $app;
20
};
0 commit comments