20 lines
267 B
PHP
20 lines
267 B
PHP
|
|
<?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()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|