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

20 lines
267 B
PHP
Raw Normal View History

2022-02-28 09:19:57 +00:00
<?php
namespace Sarga\Payment\Methods;
use Webkul\Payment\Payment\Payment;
class Terminal extends Payment
{
/**
* Payment method code
*
* @var string
*/
protected $code = 'terminal';
public function getRedirectUrl()
{
}
}