コード例 #1
0
ファイル: HttpClient.php プロジェクト: helthe/segmentio
 /**
  * Constructor.
  *
  * @param GuzzleClientInterface $client
  * @param Queue                 $queue
  * @param string                $writeKey
  */
 public function __construct(GuzzleClientInterface $client, Queue $queue, $writeKey)
 {
     parent::__construct($queue, $writeKey);
     $this->client = $client;
 }