This commit is contained in:
Jeremy Benoist
2021-01-18 10:38:56 +01:00
parent 11031114e2
commit 381f9681b5
7 changed files with 9 additions and 9 deletions

View File

@ -246,7 +246,7 @@ class PocketImport extends AbstractImport
{
$data = json_decode((string) $response->getBody(), true);
if (JSON_ERROR_NONE !== json_last_error()) {
if (\JSON_ERROR_NONE !== json_last_error()) {
throw new \InvalidArgumentException('Unable to parse JSON data: ' . json_last_error_msg());
}