diff --git a/src/BitPaySDK/Util/RESTcli/RESTcli.php b/src/BitPaySDK/Util/RESTcli/RESTcli.php index 1543109..bd70a44 100644 --- a/src/BitPaySDK/Util/RESTcli/RESTcli.php +++ b/src/BitPaySDK/Util/RESTcli/RESTcli.php @@ -66,8 +66,12 @@ class RESTcli * @param string|null $proxy * @throws BitPayApiException */ - public function __construct(string $environment, PrivateKey $ecKey, ?string $proxy = null, ?string $platformInfo = null) - { + public function __construct( + string $environment, + PrivateKey $ecKey, + ?string $proxy = null, + ?string $platformInfo = null + ) { $this->ecKey = $ecKey; $this->baseUrl = $environment == Env::TEST ? Env::TEST_URL : Env::PROD_URL; $this->proxy = $proxy !== null ? trim($proxy) : '';