Skip to content

Instantly share code, notes, and snippets.

@dimmduh
Created September 13, 2017 02:17
Show Gist options
  • Save dimmduh/785681fee639a8311461543573530e8f to your computer and use it in GitHub Desktop.
Save dimmduh/785681fee639a8311461543573530e8f to your computer and use it in GitHub Desktop.
Yii2 http client init with base request params
private function initClient()
{
$this->_client = new Client([
'baseUrl' => $this->host,
'transport' => [
'class' => 'yii\httpclient\CurlTransport'
],
'requestConfig' => [
'options' => [
'timeout' => 1,
'sslVerifyPeer' => false,
]
]
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment