Example #1
0
 /**
  * @param array $pOptions
  *
  * @return \GuzzleHttp\Client
  */
 protected function CreateHttpClient($pOptions = [])
 {
     $client = parent::CreateHttpClient($pOptions);
     $this->mHistory = new History();
     $client->getEmitter()->attach($this->mHistory);
     return $client;
 }