Skip to content

Commit 4609694

Browse files
authored
Merge pull request #123 from mekras/dummy_client_interface
DummyClient should provide methods of HttpClient and HttpAsyncClient
2 parents 9e19001 + 167fc5f commit 4609694

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ClientFactory/DummyClient.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33
namespace Http\HttplugBundle\ClientFactory;
44

5+
use Http\Client\HttpAsyncClient;
6+
use Http\Client\HttpClient;
7+
58
/**
69
* This client is used as a placeholder for the dependency injection. It will never be used.
710
*
811
* @author Tobias Nyholm <[email protected]>
912
*/
10-
class DummyClient
13+
interface DummyClient extends HttpClient, HttpAsyncClient
1114
{
1215
}

0 commit comments

Comments
 (0)