mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-10 07:53:44 +08:00
18 lines
436 B
PHP
18 lines
436 B
PHP
|
<?php
|
||
|
|
||
|
namespace Buzz\Client;
|
||
|
|
||
|
use Buzz\Message\MessageInterface;
|
||
|
use Buzz\Message\RequestInterface;
|
||
|
|
||
|
interface ClientInterface
|
||
|
{
|
||
|
/**
|
||
|
* Populates the supplied response with the response for the supplied request.
|
||
|
*
|
||
|
* @param RequestInterface $request A request object
|
||
|
* @param MessageInterface $response A response object
|
||
|
*/
|
||
|
public function send(RequestInterface $request, MessageInterface $response);
|
||
|
}
|