]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS
authorJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 7 Feb 2019 16:30:38 +0000 (17:30 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Tue, 28 May 2019 09:42:27 +0000 (11:42 +0200)
src/Wallabag/ImportBundle/Import/PocketImport.php

index b35a561bb45eacf3d7a0115a24be93ddd92dea6b..746120af17a19d9e5123f0104f92b1904132845a 100644 (file)
@@ -247,7 +247,7 @@ class PocketImport extends AbstractImport
 
     protected function jsonDecode(ResponseInterface $response)
     {
-        $data = \json_decode((string) $response->getBody(), true);
+        $data = json_decode((string) $response->getBody(), true);
 
         if (JSON_ERROR_NONE !== json_last_error()) {
             throw new \InvalidArgumentException('Unable to parse JSON data: ' . json_last_error_msg());