mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 00:34:37 -04:00
Apply styles
This commit is contained in:
parent
a7c7f58bb5
commit
fd08ebc6cb
@ -3,18 +3,17 @@
|
|||||||
namespace App\PaymentDrivers\GoCardless;
|
namespace App\PaymentDrivers\GoCardless;
|
||||||
|
|
||||||
use App\Exceptions\PaymentFailed;
|
use App\Exceptions\PaymentFailed;
|
||||||
use Illuminate\Http\Request;
|
|
||||||
use App\PaymentDrivers\Common\MethodInterface;
|
|
||||||
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
|
||||||
use App\Jobs\Mail\PaymentFailureMailer;
|
use App\Jobs\Mail\PaymentFailureMailer;
|
||||||
use App\Jobs\Util\SystemLogger;
|
use App\Jobs\Util\SystemLogger;
|
||||||
use App\Models\GatewayType;
|
use App\Models\GatewayType;
|
||||||
use App\Models\Payment;
|
use App\Models\Payment;
|
||||||
use App\Models\PaymentType;
|
use App\Models\PaymentType;
|
||||||
use App\Models\SystemLog;
|
use App\Models\SystemLog;
|
||||||
|
use App\PaymentDrivers\Common\MethodInterface;
|
||||||
use App\PaymentDrivers\GoCardlessPaymentDriver;
|
use App\PaymentDrivers\GoCardlessPaymentDriver;
|
||||||
use Illuminate\Contracts\Container\BindingResolutionException;
|
use Illuminate\Contracts\Container\BindingResolutionException;
|
||||||
use Illuminate\Http\RedirectResponse;
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
class InstantBankPay implements MethodInterface
|
class InstantBankPay implements MethodInterface
|
||||||
{
|
{
|
||||||
@ -29,10 +28,10 @@ class InstantBankPay implements MethodInterface
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Authorization page for Instant Bank Pay.
|
* Authorization page for Instant Bank Pay.
|
||||||
*
|
*
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @return RedirectResponse
|
* @return RedirectResponse
|
||||||
* @throws BindingResolutionException
|
* @throws BindingResolutionException
|
||||||
*/
|
*/
|
||||||
public function authorizeView(array $data): RedirectResponse
|
public function authorizeView(array $data): RedirectResponse
|
||||||
{
|
{
|
||||||
@ -41,10 +40,10 @@ class InstantBankPay implements MethodInterface
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle authorization for Instant Bank Pay.
|
* Handle authorization for Instant Bank Pay.
|
||||||
*
|
*
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @return RedirectResponse
|
* @return RedirectResponse
|
||||||
* @throws BindingResolutionException
|
* @throws BindingResolutionException
|
||||||
*/
|
*/
|
||||||
public function authorizeResponse(Request $request): RedirectResponse
|
public function authorizeResponse(Request $request): RedirectResponse
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user