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
Objects currently behave fairly close to Arrays, however PHP 7.4 will be adding a notice of deprecation for many Array-purpose-functions on Objects. It would probably be a good idea to make a few preemptive changes before 7.4 is released.
So far, I've only noticed something that would be a problem on line 402 of lib/ApiRequestor.php, though there may be other instances. array_key_exists will throw a warning because $rheaders is an Object, not an Array.
The text was updated successfully, but these errors were encountered:
Objects currently behave fairly close to Arrays, however PHP 7.4 will be adding a notice of deprecation for many Array-purpose-functions on Objects. It would probably be a good idea to make a few preemptive changes before 7.4 is released.
So far, I've only noticed something that would be a problem on line 402 of
lib/ApiRequestor.php
, though there may be other instances.array_key_exists
will throw a warning because$rheaders
is an Object, not an Array.The text was updated successfully, but these errors were encountered: