We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1ca561 commit 80ffa18Copy full SHA for 80ffa18
1 file changed
src/Adapter/Adapter.php
@@ -1,4 +1,5 @@
1
<?php
2
+
3
/**
4
* User: junade
5
* Date: 13/01/2017
@@ -8,6 +9,7 @@
8
9
namespace Cloudflare\API\Adapter;
10
11
use Cloudflare\API\Auth\Auth;
12
+use GuzzleHttp\Client;
13
use Psr\Http\Message\ResponseInterface;
14
15
@@ -21,9 +23,10 @@ interface Adapter
21
23
* Adapter constructor.
22
24
*
25
* @param Auth $auth
26
+ * @param Client $client
27
* @param string $baseURI
28
*/
- public function __construct(Auth $auth, string $baseURI);
29
+ public function __construct(Auth $auth, Client $client, string $baseURI);
30
31
32
* Sends a GET request.
0 commit comments