File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
5
5
use Http \Client \Common \HttpAsyncClientDecorator ;
6
6
use Http \Client \Common \HttpClientDecorator ;
7
- use Http \Client \Common \HttpClientFlexible ;
7
+ use Http \Client \Common \FlexibleHttpClient ;
8
8
use Http \Client \HttpAsyncClient ;
9
9
use Http \Client \HttpClient ;
10
10
use PhpSpec \ObjectBehavior ;
11
11
use Prophecy \Prophet ;
12
12
13
- class HttpClientFlexibleSpec extends ObjectBehavior
13
+ class FlexibleHttpClientSpec extends ObjectBehavior
14
14
{
15
15
function let (HttpClient $ httpClient )
16
16
{
17
17
$ this ->beAnInstanceOf (
18
- 'spec\Http\Client\Common\HttpClientFlexibleStub ' , [
18
+ 'spec\Http\Client\Common\FlexibleHttpClientStub ' , [
19
19
$ httpClient
20
20
]
21
21
);
22
22
}
23
23
24
24
function it_is_initializable ()
25
25
{
26
- $ this ->shouldHaveType ('Http\Client\Common\HttpClientFlexible ' );
26
+ $ this ->shouldHaveType ('Http\Client\Common\FlexibleHttpClient ' );
27
27
}
28
28
29
29
function it_is_an_http_client ()
@@ -78,7 +78,7 @@ function it_does_not_emulates_a_client()
78
78
}
79
79
}
80
80
81
- class HttpClientFlexibleStub extends HttpClientFlexible
81
+ class FlexibleHttpClientStub extends FlexibleHttpClient
82
82
{
83
83
public function getClient ()
84
84
{
Original file line number Diff line number Diff line change 11
11
*
12
12
* @author Joel Wurtz <[email protected] >
13
13
*/
14
- class HttpClientFlexible implements HttpClient, HttpAsyncClient
14
+ class FlexibleHttpClient implements HttpClient, HttpAsyncClient
15
15
{
16
16
use HttpClientDecorator;
17
17
use HttpAsyncClientDecorator;
You can’t perform that action at this time.
0 commit comments