add success http message

This commit is contained in:
cnohall 2024-09-10 15:19:09 +09:00
parent 3cbe451878
commit 5d07317cfa

View File

@ -191,6 +191,10 @@ class BlockonomicsPaymentDriver extends BaseDriver
$payment->status_id = $statusId;
$payment->save();
}
header('HTTP/1.1 200 OK');
echo 'SUCCESS';
return;
}