Elgg  Version 2.3
OutputBufferTransport.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Http;
4 
6 use Symfony\Component\HttpFoundation\Response;
7 
15 
19  public function send(Response $response) {
20  echo $response->getContent();
21  return true;
22  }
23 
24 }
Transport for sending responses to non-HTTP clients, e.g.
send(Response $response)
{Sends HTTP response to the requester.Symfony Response bool}
HTTP response transport interface.