Skip to content

Commit

Permalink
Revert "Change namespace for http client"
Browse files Browse the repository at this point in the history
This reverts commit 16d96d4.
  • Loading branch information
Stefan Auditor committed Jul 4, 2016
1 parent 8a206de commit 871458a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BigBlueButton/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace sanduhrs\BigBlueButton;

use GuzzleHttp\Client;
use \GuzzleHttp\Client as HTTPClient;
use sanduhrs\BigBlueButton\BigBlueButtonException;

/**
Expand Down Expand Up @@ -223,7 +223,7 @@ public function getRaw($call, $options = [])
$options += [
'checksum' => $this->checksum($call, $options),
];
$response = $this->client->request(
$response = $this->HTTPClient->request(
'GET',
$this->url . $this->endpoint . $call,
['query' => $options]
Expand Down Expand Up @@ -277,7 +277,7 @@ public function postRaw($call, $options = [])
$options += [
'checksum' => $this->checksum($call, $options),
];
$response = $this->client->request(
$response = $this->HTTPClient->request(
'POST',
$this->url . $this->endpoint . $call,
['form_params' => $options]
Expand Down

0 comments on commit 871458a

Please sign in to comment.