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
/
apimatic
/
core-interfaces
/
src
/
Http
:
RetryOption.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPForms\Vendor\CoreInterfaces\Http; interface RetryOption { /** * To retry request, ignoring httpMethods whitelist. */ const ENABLE_RETRY = "enableRetries"; /** * To disable retries, ignoring httpMethods whitelist. */ const DISABLE_RETRY = "disableRetries"; /** * To use global httpMethods whitelist to determine if request needs retrying. */ const USE_GLOBAL_SETTINGS = "useGlobalSettings"; }