From d6859489c2322a48b70f6e5d074a65932dfd1c96 Mon Sep 17 00:00:00 2001 From: Dmitrii Gromov Date: Mon, 3 Jun 2019 15:53:58 +0300 Subject: [PATCH] added code 100 to allowed http statuses --- Model/Atol/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Model/Atol/Client.php b/Model/Atol/Client.php index cc1a7906..cb673eb8 100644 --- a/Model/Atol/Client.php +++ b/Model/Atol/Client.php @@ -20,7 +20,7 @@ class Client const REQUEST_TEST_URL = 'https://testonline.atol.ru/possystem/v%u/'; //see Atol Documentation - const ALLOWED_HTTP_STATUSES = [200, 400, 401]; + const ALLOWED_HTTP_STATUSES = [100, 200, 400, 401]; const GET_TOKEN_URL_APPNX = 'getToken'; const SELL_URL_APPNX = 'sell';