2022-03-02 09:47:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Sarga\Payment\Methods;
|
|
|
|
|
|
2022-03-02 09:56:10 +00:00
|
|
|
use Webkul\Payment\Payment\Payment;
|
2022-03-02 09:47:21 +00:00
|
|
|
|
2022-03-02 09:56:10 +00:00
|
|
|
class Cash50 extends Payment
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Payment method code
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $code = 'cash50';
|
|
|
|
|
public function getRedirectUrl()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement getRedirectUrl() method.
|
|
|
|
|
}
|
2022-03-02 09:47:21 +00:00
|
|
|
}
|