snappymail/rainloop/v/1.2.6.410/app/libraries/Buzz/Client/ClientInterface.php

18 lines
436 B
PHP
Raw Normal View History

2013-09-25 03:04:44 +08:00
<?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);
}