fix:isset() 표현식 오류 수정
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -413,7 +413,7 @@ private function getAllCardsTransactions(string $userId, string $startDate, stri
|
||||
'CurrentPage' => $cardData->CurrentPage ?? 'N/A',
|
||||
'MaxIndex' => $cardData->MaxIndex ?? 'N/A',
|
||||
'hasCardLogList' => isset($cardData->CardLogList),
|
||||
'hasCardApprovalLog' => isset($cardData->CardLogList->CardApprovalLog ?? null),
|
||||
'hasCardApprovalLog' => isset($cardData->CardLogList) && isset($cardData->CardLogList->CardApprovalLog),
|
||||
]);
|
||||
|
||||
if (!$errorCode || in_array($errorCode, [-24005, -24001])) {
|
||||
|
||||
Reference in New Issue
Block a user