payment methods finish
This commit is contained in:
parent
eca9a68aeb
commit
ad0317fadd
|
|
@ -11,7 +11,7 @@ class Cash100 extends Payment
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $code = 'cashbeforedelivery';
|
||||
protected $code = 'cash100';
|
||||
|
||||
public function getRedirectUrl()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,18 @@
|
|||
|
||||
namespace Sarga\Payment\Methods;
|
||||
|
||||
class Cash50
|
||||
{
|
||||
use Webkul\Payment\Payment\Payment;
|
||||
|
||||
class Cash50 extends Payment
|
||||
{
|
||||
/**
|
||||
* Payment method code
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $code = 'cash50';
|
||||
public function getRedirectUrl()
|
||||
{
|
||||
// TODO: Implement getRedirectUrl() method.
|
||||
}
|
||||
}
|
||||
|
|
@ -11,7 +11,7 @@ class Terminal100 extends Payment
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $code = 'terminal';
|
||||
protected $code = 'terminal100';
|
||||
|
||||
public function getRedirectUrl()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,18 @@
|
|||
|
||||
namespace Sarga\Payment\Methods;
|
||||
|
||||
class Terminal50
|
||||
{
|
||||
use Webkul\Payment\Payment\Payment;
|
||||
|
||||
class Terminal50 extends Payment
|
||||
{
|
||||
/**
|
||||
* Payment method code
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $code = 'terminal50';
|
||||
public function getRedirectUrl()
|
||||
{
|
||||
// TODO: Implement getRedirectUrl() method.
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue