getHttpClient() public method

Returns HttpClient object for setting user-agent string or other CURL available options.
public getHttpClient ( ) : seregazhuk\PinterestBot\Api\Contracts\HttpClient
return seregazhuk\PinterestBot\Api\Contracts\HttpClient
 /** @test */
 public function it_returns_http_client_instance()
 {
     $this->request->shouldReceive('getHttpClient')->andReturn(new CurlHttpClient(new Cookies()));
     $this->assertInstanceOf(HttpClient::class, $this->container->getHttpClient());
 }