2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\PaymentDrivers;
|
2016-09-26 11:33:30 +02:00
|
|
|
|
|
|
|
class CustomPaymentDriver extends BasePaymentDriver
|
|
|
|
{
|
|
|
|
public function gatewayTypes()
|
|
|
|
{
|
|
|
|
return [
|
2017-01-30 20:40:43 +01:00
|
|
|
GATEWAY_TYPE_CUSTOM,
|
2016-09-26 11:33:30 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|