Migrate RainLoop Webmail to use Facebook Graph API instead of FQL

This commit is contained in:
RainLoop Team 2014-07-04 00:11:47 +04:00
parent 9fcaf00875
commit d0dbb26548
120 changed files with 18817 additions and 1746 deletions

View file

@ -0,0 +1,35 @@
<?php
namespace GuzzleHttp\Adapter;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Message\RequestInterface;
use GuzzleHttp\Message\ResponseInterface;
/**
* Represents a transactions that consists of a request, response, and client
*/
interface TransactionInterface
{
/**
* @return RequestInterface
*/
public function getRequest();
/**
* @return ResponseInterface|null
*/
public function getResponse();
/**
* Set a response on the transaction
*
* @param ResponseInterface $response Response to set
*/
public function setResponse(ResponseInterface $response);
/**
* @return ClientInterface
*/
public function getClient();
}