[HttpFoundation] fixed fluent interface on BinaryFileResponse::prepare() (closes #6537)

This commit is contained in:
Fabien Potencier 2013-01-03 09:05:32 +01:00
parent ef0497441e
commit 173426674f

View File

@ -210,6 +210,8 @@ class BinaryFileResponse extends Response
$this->headers->set('Content-Range', sprintf('bytes %s-%s/%s', $start, $end, $this->file->getSize()));
}
}
return $this;
}
/**