mirror of
https://github.com/itflow-org/itflow
synced 2026-08-15 12:05:11 +00:00
Split DB Updates into seperate files, with the cutoff being 2.0.0
This commit is contained in:
@@ -58,13 +58,10 @@ class Stripe
|
||||
/** @var float Maximum delay between retries, in seconds */
|
||||
private static $maxNetworkRetryDelay = 2.0;
|
||||
|
||||
/** @var float Maximum delay between retries, in seconds, that will be respected from the Stripe API */
|
||||
private static $maxRetryAfter = 60.0;
|
||||
|
||||
/** @var float Initial delay between retries, in seconds */
|
||||
private static $initialNetworkRetryDelay = 0.5;
|
||||
|
||||
const VERSION = '19.4.1';
|
||||
const VERSION = '21.0.0';
|
||||
|
||||
/**
|
||||
* @return string the API key used for requests
|
||||
@@ -247,14 +244,6 @@ class Stripe
|
||||
return self::$maxNetworkRetryDelay;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float Maximum delay between retries, in seconds, that will be respected from the Stripe API
|
||||
*/
|
||||
public static function getMaxRetryAfter()
|
||||
{
|
||||
return self::$maxRetryAfter;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float Initial delay between retries, in seconds
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user