From 1b9339bde0fc6a8c9627cd39c0ee65ee0192905c Mon Sep 17 00:00:00 2001 From: Stanislav Date: Fri, 19 Feb 2021 00:57:15 +0300 Subject: [PATCH] Changed Merchant api url. Removed unused system ip --- src/Merchant.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Merchant.php b/src/Merchant.php index 31996c1..2dccc46 100644 --- a/src/Merchant.php +++ b/src/Merchant.php @@ -20,7 +20,7 @@ */ class Merchant extends Component { - const BASE_API_URL = "http://www.free-kassa.ru/api.php"; + const BASE_API_URL = "https://www.free-kassa.ru/api.php"; const CONFIRMATION_RESPONSE_TEXT = 'YES'; @@ -86,7 +86,7 @@ class Merchant extends Component * @var array */ public $systemIPs = ['136.243.38.147', '136.243.38.149', '136.243.38.150', '136.243.38.151', - '136.243.38.189', '88.198.88.98', '136.243.38.108']; + '136.243.38.189', '136.243.38.108']; /** @var string used for creating the hash to send merchant form (in API doc see 'secret1') */ public $merchantFormSecret; @@ -394,4 +394,4 @@ protected static function formatAmount($amount) { return number_format($amount, 2, '.', ''); } -} \ No newline at end of file +}