scratch – Blame information for rev 87

Subversion Repositories:
Rev:
Rev Author Line No. Line
87 office 1 <?php
2  
3 namespace GuzzleHttp\Adapter;
4  
5 use GuzzleHttp\Message\ResponseInterface;
6  
7 /**
8 * Adapter interface used to transfer HTTP requests.
9 *
10 * @link http://docs.guzzlephp.org/en/guzzle4/adapters.html for a full
11 * explanation of adapters and their responsibilities.
12 */
13 interface AdapterInterface
14 {
15 /**
16 * Transfers an HTTP request and populates a response
17 *
18 * @param TransactionInterface $transaction Transaction abject to populate
19 *
20 * @return ResponseInterface
21 */
22 public function send(TransactionInterface $transaction);
23 }