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 294b220 commit c7f1268Copy full SHA for c7f1268
1 file changed
public/error.php
@@ -25,7 +25,9 @@
25
$queryString = $_SERVER['QUERY_STRING'] ?? '';
26
27
/* this will exit processing if a response is provided */
28
-ServiceLocator::make()->get(HttpKernel::class)->handleErrorInteropEntry();
+$kernel = ServiceLocator::make()->get(HttpKernel::class);
29
+assert($kernel instanceof HttpKernel);
30
+$kernel->handleErrorInteropEntry();
31
32
// ============================================================================
33
// Mozilla Search Sidebar plugin resource file handling (need to be mirror
0 commit comments