From 1cb1e6837bde944beddf07b40791a422ae1aa9ad Mon Sep 17 00:00:00 2001 From: jjstyle Date: Fri, 23 Jan 2026 21:21:51 +0900 Subject: [PATCH] =?UTF-8?q?vrfcReqModel=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/NaverService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/NaverService.php b/app/Services/NaverService.php index 1bd3b26..f56712f 100644 --- a/app/Services/NaverService.php +++ b/app/Services/NaverService.php @@ -585,8 +585,8 @@ class NaverService 'orgRepNm' => null, 'smsSendTime' => null, 'document_cert_method' => null, - 'noRgbkVrfcReqYn' => ($address['isUnregisteredVerificationRequested'] === true) ? 'Y' : (($address['isUnregisteredVerificationRequested'] === false) ? 'N' : null), - 'areaByBdbkVrfcReqYn' => ($address['isBuildingRegisterAreaCheckRequested'] === true) ? 'Y' : (($address['isBuildingRegisterAreaCheckRequested'] === false) ? 'N' : null), + 'noRgbkVrfcReqYn' => ($address['isUnregisteredVerificationRequested'] ?? null) === true ? 'Y' : (($address['isUnregisteredVerificationRequested'] ?? null) === false ? 'N' : null), + 'areaByBdbkVrfcReqYn' => ($address['isBuildingRegisterAreaCheckRequested'] ?? null) === true ? 'Y' : (($address['isBuildingRegisterAreaCheckRequested'] ?? null) === false ? 'N' : null), 'orgAtclNo' => null, 'atclStatCd' => null, 'repNm' => $realtor['realtorName'] ?? null,