diff --git a/app/PaymentDrivers/PayFastPaymentDriver.php b/app/PaymentDrivers/PayFastPaymentDriver.php index 65d0c030d7e2..32cd2643edc4 100644 --- a/app/PaymentDrivers/PayFastPaymentDriver.php +++ b/app/PaymentDrivers/PayFastPaymentDriver.php @@ -21,7 +21,7 @@ use App\PaymentDrivers\PayFast\Token; use App\Utils\Traits\MakesHash; use Illuminate\Http\Request; use Illuminate\Support\Facades\Cache; -use \PayFastPayment; +use PayFastPayment; class PayFastPaymentDriver extends BaseDriver { @@ -126,7 +126,7 @@ class PayFastPaymentDriver extends BaseDriver public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash) { $this->init(); - + return (new Token($this))->tokenBilling($cgt, $payment_hash); }