Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
:
ConfigurationDefaults.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\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 = '2025-01-23'; public const ADDITIONAL_HEADERS = []; public const USER_AGENT_DETAIL = ''; public const ENVIRONMENT = Environment::PRODUCTION; public const CUSTOM_URL = 'https://connect.squareup.com'; public const ACCESS_TOKEN = ''; /** * @var array Associative list of all default configurations */ public const _ALL = ['timeout' => self::TIMEOUT, 'enableRetries' => self::ENABLE_RETRIES, 'numberOfRetries' => self::NUMBER_OF_RETRIES, 'retryInterval' => self::RETRY_INTERVAL, 'backOffFactor' => self::BACK_OFF_FACTOR, 'maximumRetryWaitTime' => self::MAXIMUM_RETRY_WAIT_TIME, 'retryOnTimeout' => self::RETRY_ON_TIMEOUT, 'httpStatusCodesToRetry' => self::HTTP_STATUS_CODES_TO_RETRY, 'httpMethodsToRetry' => self::HTTP_METHODS_TO_RETRY, 'squareVersion' => self::SQUARE_VERSION, 'additionalHeaders' => self::ADDITIONAL_HEADERS, 'userAgentDetail' => self::USER_AGENT_DETAIL, 'environment' => self::ENVIRONMENT, 'customUrl' => self::CUSTOM_URL, 'accessToken' => self::ACCESS_TOKEN]; }