File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use PhpSpec \ObjectBehavior ;
6
6
7
- class HttpAdapterDiscoverySpec extends ObjectBehavior
7
+ class HttpClientDiscoverySpec extends ObjectBehavior
8
8
{
9
9
function it_is_initializable ()
10
10
{
11
- $ this ->shouldHaveType ('Http\Discovery\HttpAdapterDiscovery ' );
11
+ $ this ->shouldHaveType ('Http\Discovery\HttpClientDiscovery ' );
12
12
}
13
13
14
14
function it_is_a_class_discovery ()
Original file line number Diff line number Diff line change 11
11
12
12
namespace Http \Discovery ;
13
13
14
- use Http \Adapter \ HttpAdapter ;
14
+ use Http \Client \ HttpClient ;
15
15
16
16
/**
17
- * Finds an HTTP Adapter
17
+ * Finds an HTTP Client
18
18
*
19
19
* @author Márk Sági-Kazár <[email protected] >
20
20
*/
21
- class HttpAdapterDiscovery extends ClassDiscovery
21
+ class HttpClientDiscovery extends ClassDiscovery
22
22
{
23
23
/**
24
- * @var HttpAdapter
24
+ * @var HttpClient
25
25
*/
26
26
protected static $ cache ;
27
27
@@ -43,7 +43,7 @@ class HttpAdapterDiscovery extends ClassDiscovery
43
43
/**
44
44
* Finds an HTTP Adapter
45
45
*
46
- * @return HttpAdapter
46
+ * @return HttpClient
47
47
*
48
48
* @throws NotFoundException
49
49
*/
You can’t perform that action at this time.
0 commit comments