From 30225615d002878092bd505a2cf28aa0b3bf4625 Mon Sep 17 00:00:00 2001 From: Robert Brodie Date: Mon, 11 Nov 2024 11:11:35 -0500 Subject: [PATCH] SP-1095 Update phpcs --- src/BitPaySDK/Util/RESTcli/RESTcli.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/BitPaySDK/Util/RESTcli/RESTcli.php b/src/BitPaySDK/Util/RESTcli/RESTcli.php index 15431094..bd70a444 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) : '';