Bump stripe-php from 16.4.0 to 17.2.1

This commit is contained in:
johnnyq
2025-05-22 12:37:35 -04:00
parent 5361391b3b
commit 6a368840fa
332 changed files with 4978 additions and 4624 deletions

View File

@@ -12,12 +12,13 @@ interface ClientInterface
* @param bool $hasFile Whether or not $params references a file (via an @ prefix or
* CURLFile)
* @param 'v1'|'v2' $apiMode Specifies if this is a v1 or v2 request
*
* @throws \Stripe\Exception\ApiConnectionException
* @throws \Stripe\Exception\UnexpectedValueException
* @param null|int $maxNetworkRetries
*
* @return array an array whose first element is raw request body, second
* element is HTTP status code and third array of HTTP headers
*
* @throws \Stripe\Exception\ApiConnectionException
* @throws \Stripe\Exception\UnexpectedValueException
*/
public function request($method, $absUrl, $headers, $params, $hasFile, $apiMode = 'v1');
public function request($method, $absUrl, $headers, $params, $hasFile, $apiMode = 'v1', $maxNetworkRetries = null);
}