Elgg  Version 6.2
ResponseTransport.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Http;
4 
5 use Symfony\Component\HttpFoundation\Response as SymfonyResponse;
6 
13 interface ResponseTransport {
14 
22  public function send(SymfonyResponse $response);
23 }
HTTP response transport interface.
send(SymfonyResponse $response)
Sends HTTP response to the requester.
$response
Definition: content.php:10