protected BigPipe::sendPostBody($post_body)
Sends </body> and everything after it.
Parameters
string $post_body: The HTML response's content after the closing </body> tag.
File
- core/modules/big_pipe/src/Render/BigPipe.php, line 496
 
Class
- BigPipe
 - The default BigPipe service.
 
Namespace
Drupal\big_pipe\Render
Code
protected function sendPostBody($post_body) {
  print '</body>';
  print $post_body;
  flush();
}
Please login to continue.