mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-09 07:24:03 +08:00
17 lines
436 B
PHP
17 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);
|
|
}
|