Reverting Symfony's Response class to previous version

Signed-off-by: Koen Schmeets <k.schmeets@gmail.com>
This commit is contained in:
Koen Schmeets 2012-05-24 11:49:35 +02:00
parent b02fd5232c
commit 0f3e8eb62b
1 changed files with 4 additions and 0 deletions

View File

@ -292,6 +292,10 @@ public function send()
$this->sendHeaders();
$this->sendContent();
if (function_exists('fastcgi_finish_request')) {
fastcgi_finish_request();
}
return $this;
}