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; }