Skip to content

Commit d5e58cd

Browse files
committed
fix formatting
1 parent 766fc89 commit d5e58cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

TransactionReporting/get-account-updater-job-details.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ function getAccountUpdaterJobDetails()
5656
echo "Updates:\n";
5757
foreach ($details->getAuUpdate() as $update) {
5858
echo " Profile ID / Payment Profile ID : " . $update->getCustomerProfileID() . " / " . $update->getCustomerPaymentProfileID() . "\n";
59-
echo " Update Time (UTC) : " . date_format($update->getUpdateTimeUTC(), 'Y-m-d H:i:s') . "\n";
59+
echo " Update Time (UTC) : " . $update->getUpdateTimeUTC() . "\n";
6060
echo " Reason Code : " . $update->getAuReasonCode() . "\n";
61-
echo " Reason Description : " . number_format($update->getReasonDescription(), 2, '.', '') . "\n";
61+
echo " Reason Description : " . $update->getReasonDescription() . "\n";
6262
echo "\n";
6363
}
6464
echo "\nDeletes:\n";

TransactionReporting/get-account-updater-job-summary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ function getAccountUpdaterJobSummary()
3838

3939
// Displaying the summary of each response in the list
4040
foreach ($response->getAuSummary() as $result) {
41-
echo " Reason Code : " . $result->getAuReasonCode() . "\n";
41+
echo " Reason Code : " . $result->getAuReasonCode() . "\n";
4242
echo " Reason Description : " . $result->getReasonDescription() . "\n";
43-
echo " Profiles updated for this reason : " . $result->getProfileCount() . "\n";
43+
echo " Profiles updated for this reason : " . $result->getProfileCount() . "\n\n";
4444
}
4545
} else {
4646
echo "ERROR : Invalid response\n";

0 commit comments

Comments
 (0)