![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/shippo/shippo-php/lib/Shippo/ |
<?php abstract class Shippo { /** * @var string The Shippo API key to be used for requests. */ public static $apiKey; /** * @var string The base URL for the Shippo API. */ public static $apiBase = 'https://api.goshippo.com'; /** * @var string|null The version of the Shippo API to use for requests. */ public static $apiVersion = null; /** * @var boolean Defaults to true. */ public static $verifySslCerts = false; const VERSION = '0.0.1'; /** * @return string The API key used for requests. */ public static function getApiKey() { return self::$apiKey; } /** * Sets the API key to be used for requests. * * @param string $apiKey */ public static function setApiKey($apiKey) { self::$apiKey = $apiKey; } /** * @return string The API version used for requests. null if we're using the * latest version. */ public static function getApiVersion() { return self::$apiVersion; } /** * @param string $apiVersion The API version to use for requests. */ public static function setApiVersion($apiVersion) { self::$apiVersion = $apiVersion; } }