We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e6aae commit 1f644ebCopy full SHA for 1f644eb
lib/Github/HttpClient/HttpClient.php
@@ -43,7 +43,7 @@ class HttpClient implements HttpClientInterface
43
public function __construct(array $options = array(), ClientInterface $client = null)
44
{
45
$this->options = array_merge($this->options, $options);
46
- $client = $client ?: new GuzzleClient($options['base_url'], $this->options);
+ $client = $client ?: new GuzzleClient($this->options['base_url'], $this->options);
47
$this->client = $client;
48
49
$this->addListener('request.error', array(new ErrorListener($this->options), 'onRequestError'));
0 commit comments