1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Fixes for base driver

This commit is contained in:
David Bomba 2021-07-05 10:32:26 +10:00
parent f8a11232a6
commit 9a73602c09

View File

@ -19,6 +19,7 @@ use App\Models\SystemLog;
use App\PaymentDrivers\PayFast\CreditCard;
use App\Utils\Traits\MakesHash;
use \PayFastPayment;
use Illuminate\Http\Request;
class PayFastPaymentDriver extends BaseDriver
{
@ -138,7 +139,7 @@ class PayFastPaymentDriver extends BaseDriver
return md5( $getString );
}
public function processWebhookRequest(PaymentWebhookRequest $request, Payment $payment = null)
public function processWebhookRequest(Request $request, Payment $payment = null)
{
nlog($request->all());