]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/ImportBundle/Import/PocketImport.php
CS
[github/wallabag/wallabag.git] / 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());