Elgg  Version 2.3
HttpProtocolTransport.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  return $response->send();
21  }
22 
23 }
Transport for sending responses to HTTP clients via HTTP protocol.
send(Response $response)
{Sends HTTP response to the requester.Symfony Response bool}
HTTP response transport interface.