/**
  * @param HttpClientInterface $httpClient
  * @param string $targetUrl
  * @param string $key
  * @param EncoderInterface $encoder
  */
 public function __construct(HttpClientInterface $httpClient, $targetUrl, $key, EncoderInterface $encoder)
 {
     parent::__construct($targetUrl, $key, $encoder);
     $this->httpClient = $httpClient;
 }
 /**
  * @param string $replyToUrl
  * @param string $targetUrl
  * @param string $key
  * @param EncoderInterface $encoder
  */
 public function __construct($replyToUrl, $targetUrl, $key, EncoderInterface $encoder)
 {
     parent::__construct($targetUrl, $key, $encoder);
     $this->replyToUrl = $replyToUrl;
 }
 /**
  * @param $binding
  */
 public function testCheckBinding(&$binding)
 {
     parent::checkBinding($binding);
 }