sarga/packages/Sarga/Payment/Methods/Cash100.php

20 lines
265 B
PHP
Raw Normal View History

2022-03-01 13:13:28 +00:00
<?php
namespace Sarga\Payment\Methods;
use Webkul\Payment\Payment\Payment;
2022-03-02 09:47:21 +00:00
class Cash100 extends Payment
2022-03-01 13:13:28 +00:00
{
/**
* Payment method code
*
* @var string
*/
2022-03-02 09:56:10 +00:00
protected $code = 'cash100';
2022-03-01 13:13:28 +00:00
public function getRedirectUrl()
{
}
}