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

20 lines
273 B
PHP
Raw Normal View History

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