summaryrefslogtreecommitdiffstats
path: root/lib/Service/Social/InstagramProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/Social/InstagramProvider.php')
-rw-r--r--lib/Service/Social/InstagramProvider.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Service/Social/InstagramProvider.php b/lib/Service/Social/InstagramProvider.php
index a61e36be..1b046f87 100644
--- a/lib/Service/Social/InstagramProvider.php
+++ b/lib/Service/Social/InstagramProvider.php
@@ -27,11 +27,12 @@ use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\RequestOptions;
use OC\AppFramework\Http\Request;
use OCA\Contacts\AppInfo\Application;
+use OCP\Http\Client\IClient;
use OCP\Http\Client\IClientService;
use Psr\Log\LoggerInterface;
class InstagramProvider implements ISocialProvider {
- /** @var IClientService */
+ /** @var IClient */
private $httpClient;
/** @var LoggerInterface */
@@ -42,7 +43,7 @@ class InstagramProvider implements ISocialProvider {
public function __construct(IClientService $httpClient,
LoggerInterface $logger) {
- $this->httpClient = $httpClient->NewClient();
+ $this->httpClient = $httpClient->newClient();
$this->logger = $logger;
}