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 c0435d6 commit c452316Copy full SHA for c452316
src/Connector/NetteConnector.php
@@ -19,6 +19,7 @@
19
use Symfony\Component\BrowserKit\Client;
20
use Symfony\Component\BrowserKit\Request;
21
use Symfony\Component\BrowserKit\Response;
22
+use Throwable;
23
24
/**
25
* @author Jáchym Toušek <[email protected]>
@@ -72,7 +73,7 @@ public function doRequest($request)
72
73
ob_start();
74
$container->getByType(Application::class)->run();
75
$content = ob_get_clean();
- } catch (Exception $e) {
76
+ } catch (Throwable $e) {
77
ob_end_clean();
78
throw $e;
79
}
0 commit comments