From 61fcb4bc52cf9f33e689c7bc265cacb3765b0d6a Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Thu, 25 Jan 2024 13:47:32 +0900 Subject: [PATCH] =?UTF-8?q?SMBC=E3=83=95=E3=83=83=E3=82=BF=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E3=83=87=E3=83=BC=E3=82=BF=E4=BB=B6=E6=95=B0=E3=81=AF?= =?UTF-8?q?=E8=80=83=E6=85=AE=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/API/SMBC/BankAccountRegister/PollResult.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/app/Http/API/SMBC/BankAccountRegister/PollResult.php b/app/Http/API/SMBC/BankAccountRegister/PollResult.php index 05bc989..f347373 100644 --- a/app/Http/API/SMBC/BankAccountRegister/PollResult.php +++ b/app/Http/API/SMBC/BankAccountRegister/PollResult.php @@ -134,14 +134,7 @@ class PollResult return false; } - $count = intval($footer->get(self::IDX_FOOTER_COUNT)); - - if ($count !== $this->body->count()) { - $this->success = false; - $this->message = sprintf("読込件数に差異あり %d : %d", $count, $this->body->count()); - return false; - } - $this->count = $count; + $this->count = $this->body->count(); return true; }