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
array_key_exists(): Using array_key_exists() on objects is deprecated. Use isset() or property_exists() instead
/code/vendor/stripe/stripe-php/lib/ApiRequestor.php:402
/code/vendor/stripe/stripe-php/lib/ApiRequestor.php:125
/code/vendor/stripe/stripe-php/lib/ApiOperations/Request.php:57
/code/vendor/stripe/stripe-php/lib/ApiOperations/Create.php:23
The code that produces the bug is:
if (array_key_exists('request-id', $rheaders)) {
self::$requestTelemetry = new RequestTelemetry(
$rheaders['request-id'],
Util\Util::currentTimeMillis() - $requestStartMs
);
}
I;m unsure if $rheaders should be an object or array.
The text was updated successfully, but these errors were encountered:
array_key_exists(): Using array_key_exists() on objects is deprecated. Use isset() or property_exists() instead
File: /var/www/html/clickandspeak/vendor/stripe/stripe-php/lib/ApiRequestor.php
Line: 402
Was not getting the error with v5.9.2.
OK in 7.28.0.
Found this while running unit tests:
The code that produces the bug is:
I;m unsure if $rheaders should be an object or array.
The text was updated successfully, but these errors were encountered: