Skip to content

Commit 6ed59ce

Browse files
author
Matthias Molitor
committed
fixed condition
1 parent 69d3ba7 commit 6ed59ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Integration/LegacyApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function setLegacyKernel(HttpKernelInterface $kernel)
2828

2929
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
3030
{
31-
if ($this->response !== null) {
31+
if ($this->response === null) {
3232
// Dispatch legacy application only once.
3333
$this->response = $this->legacyKernel->handle($request, $type, $catch);
3434
}

0 commit comments

Comments
 (0)