mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 14:14:29 -04:00
Scaffold BrowserPay class
This commit is contained in:
parent
48448b1794
commit
b8c8a486fd
28
app/PaymentDrivers/Stripe/BrowserPay.php
Normal file
28
app/PaymentDrivers/Stripe/BrowserPay.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Invoice Ninja (https://invoiceninja.com).
|
||||
*
|
||||
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||
*
|
||||
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||
*
|
||||
* @license https://opensource.org/licenses/AAL
|
||||
*/
|
||||
|
||||
namespace App\PaymentDrivers\Stripe;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\PaymentDrivers\Common\MethodInterface;
|
||||
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
||||
|
||||
class BrowserPay implements MethodInterface
|
||||
{
|
||||
public function authorizeView(array $data) { }
|
||||
|
||||
public function authorizeResponse(Request $request) { }
|
||||
|
||||
public function paymentView(array $data) { }
|
||||
|
||||
public function paymentResponse(PaymentResponseRequest $request) { }
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user