8000 [FrameworkBundle] fixed Client::doRequest that must call its parent m… · unframework/symfony@ce38069 · GitHub
[go: up one dir, main page]

Skip to content

Commit ce38069

Browse files
committed
[FrameworkBundle] fixed Client::doRequest that must call its parent method (closes symfony#6737)
1 parent 0391ac7 commit ce38069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ protected function doRequest($request)
7878
$this->hasPerformedRequest = true;
7979
}
8080

81-
return $this->kernel->handle($request);
81+
return parent::doRequest($request);
8282
}
8383

8484
/**

0 commit comments

Comments
 (0)
0