mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Minor fixes
This commit is contained in:
parent
a033ba706c
commit
552afe3374
@ -71,7 +71,6 @@ class PaymentNotification implements ShouldQueue
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*Google Analytics Track Revenue*/
|
/*Google Analytics Track Revenue*/
|
||||||
if (isset($payment->company->google_analytics_key)) {
|
if (isset($payment->company->google_analytics_key)) {
|
||||||
$this->trackRevenue($event);
|
$this->trackRevenue($event);
|
||||||
|
@ -161,6 +161,8 @@ class User extends Authenticatable implements MustVerifyEmail
|
|||||||
public function setCompany($company)
|
public function setCompany($company)
|
||||||
{
|
{
|
||||||
$this->company = $company;
|
$this->company = $company;
|
||||||
|
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -22,6 +22,7 @@ use App\Models\SystemLog;
|
|||||||
use App\PaymentDrivers\PayFastPaymentDriver;
|
use App\PaymentDrivers\PayFastPaymentDriver;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Illuminate\Support\Facades\Cache;
|
use Illuminate\Support\Facades\Cache;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
class CreditCard
|
class CreditCard
|
||||||
{
|
{
|
||||||
@ -184,5 +185,10 @@ class CreditCard
|
|||||||
return render('gateways.payfast.authorize', $data);
|
return render('gateways.payfast.authorize', $data);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function processPaymentResponse(Request $request)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user