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 44
55use Http \Client \Common \HttpAsyncClientDecorator ;
66use Http \Client \Common \HttpClientDecorator ;
7- use Http \Client \Common \HttpClientFlexible ;
7+ use Http \Client \Common \FlexibleHttpClient ;
88use Http \Client \HttpAsyncClient ;
99use Http \Client \HttpClient ;
1010use PhpSpec \ObjectBehavior ;
1111use Prophecy \Prophet ;
1212
13- class HttpClientFlexibleSpec extends ObjectBehavior
13+ class FlexibleHttpClientSpec extends ObjectBehavior
1414{
1515 function let (HttpClient $ httpClient )
1616 {
1717 $ this ->beAnInstanceOf (
18- 'spec\Http\Client\Common\HttpClientFlexibleStub ' , [
18+ 'spec\Http\Client\Common\FlexibleHttpClientStub ' , [
1919 $ httpClient
2020 ]
2121 );
2222 }
2323
2424 function it_is_initializable ()
2525 {
26- $ this ->shouldHaveType ('Http\Client\Common\HttpClientFlexible ' );
26+ $ this ->shouldHaveType ('Http\Client\Common\FlexibleHttpClient ' );
2727 }
2828
2929 function it_is_an_http_client ()
@@ -78,7 +78,7 @@ function it_does_not_emulates_a_client()
7878 }
7979}
8080
81- class HttpClientFlexibleStub extends HttpClientFlexible
81+ class FlexibleHttpClientStub extends FlexibleHttpClient
8282{
8383 public function getClient ()
8484 {
Original file line number Diff line number Diff line change 1111 *
1212 * @author Joel Wurtz <joel.wurtz@gmail.com>
1313 */
14- class HttpClientFlexible implements HttpClient, HttpAsyncClient
14+ class FlexibleHttpClient implements HttpClient, HttpAsyncClient
1515{
1616 use HttpClientDecorator;
1717 use HttpAsyncClientDecorator;
You can’t perform that action at this time.
0 commit comments