Skip to content

Commit 80ffa18

Browse files
author
alfrednutile
committed
fix interface
1 parent c1ca561 commit 80ffa18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Adapter/Adapter.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* User: junade
45
* Date: 13/01/2017
@@ -8,6 +9,7 @@
89
namespace Cloudflare\API\Adapter;
910

1011
use Cloudflare\API\Auth\Auth;
12+
use GuzzleHttp\Client;
1113
use Psr\Http\Message\ResponseInterface;
1214

1315
/**
@@ -21,9 +23,10 @@ interface Adapter
2123
* Adapter constructor.
2224
*
2325
* @param Auth $auth
26+
* @param Client $client
2427
* @param string $baseURI
2528
*/
26-
public function __construct(Auth $auth, string $baseURI);
29+
public function __construct(Auth $auth, Client $client, string $baseURI);
2730

2831
/**
2932
* Sends a GET request.

0 commit comments

Comments
 (0)