mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
21 lines
406 B
PHP
21 lines
406 B
PHP
<?php namespace App\Ninja\PaymentDrivers;
|
|
|
|
class PayPalProPaymentDriver extends BasePaymentDriver
|
|
{
|
|
public function gatewayTypes()
|
|
{
|
|
return [
|
|
GATEWAY_TYPE_CREDIT_CARD
|
|
];
|
|
}
|
|
|
|
protected function paymentDetails($paymentMethod = false)
|
|
{
|
|
$data = parent::paymentDetails();
|
|
|
|
$data['ButtonSource'] = 'InvoiceNinja_SP';
|
|
|
|
return $data;
|
|
}
|
|
}
|