1 | <?php |
||
17 | class RequestManager |
||
18 | { |
||
19 | /** |
||
20 | * @var HttpClient |
||
21 | */ |
||
22 | private $client; |
||
23 | |||
24 | /** |
||
25 | * @var MessageFactory |
||
26 | */ |
||
27 | private $messageFactory; |
||
28 | |||
29 | /** |
||
30 | * |
||
31 | * @param HttpClient $client |
||
32 | * @param MessageFactory $messageFactory |
||
33 | */ |
||
34 | 1 | public function __construct(HttpClient $client, MessageFactory $messageFactory) |
|
39 | |||
40 | /** |
||
41 | * @param array $data |
||
42 | * |
||
43 | * @return mixed |
||
44 | */ |
||
45 | public function downloadFiles(FilesystemUpdater $filesystem, array $data) |
||
55 | |||
56 | /** |
||
57 | * @param string $method |
||
58 | * @param string $url |
||
59 | * @param array $data |
||
60 | * |
||
61 | * @return array |
||
62 | * |
||
63 | * @throws HttpException |
||
64 | */ |
||
65 | public function send($method, $url, $body = null, $headers = array()) |
||
83 | |||
84 | /** |
||
85 | * @return HttpClient |
||
86 | */ |
||
87 | public function getClient() |
||
91 | |||
92 | /** |
||
93 | * |
||
94 | * @return \Http\Message\MessageFactory |
||
95 | */ |
||
96 | private function getMessageFactory() |
||
100 | } |
||
101 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.