%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/square/square/src/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Square;
/**
* Default values for the configuration parameters of the client.
*/
class ConfigurationDefaults
{
public const TIMEOUT = 60;
public const ENABLE_RETRIES = false;
public const NUMBER_OF_RETRIES = 0;
public const RETRY_INTERVAL = 1;
public const BACK_OFF_FACTOR = 2;
public const MAXIMUM_RETRY_WAIT_TIME = 0;
public const RETRY_ON_TIMEOUT = true;
public const HTTP_STATUS_CODES_TO_RETRY = [408, 413, 429, 500, 502, 503, 504, 521, 522, 524];
public const HTTP_METHODS_TO_RETRY = ['GET', 'PUT'];
public const SQUARE_VERSION = '2021-11-17';
public const ADDITIONAL_HEADERS = [];
public const ENVIRONMENT = Environment::PRODUCTION;
public const CUSTOM_URL = 'https://connect.squareup.com';
public const ACCESS_TOKEN = '';
}