You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the SiftResponse constructor, when performing json_decode($result, true); and $result is false is returns null. array_key_exists() can't handle a null value and it being called a couple of lines down.
The text was updated successfully, but these errors were encountered:
When sending a request
curl_exec()
can return false on failure. The return value is used when instantiating a SiftResponse.In the SiftResponse constructor, when performing
json_decode($result, true);
and$result
isfalse
is returnsnull
.array_key_exists()
can't handle anull
value and it being called a couple of lines down.The text was updated successfully, but these errors were encountered: