for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Payments\Gateways\Providers\Romcard;
use ByTIC\Payments\Gateways\Providers\AbstractGateway\Form as AbstractForm;
/**
* Class Form
* @package ByTIC\Payments\Gateways\Providers\Euplatesc
*/
class Form extends AbstractForm
{
public function initElements()
$this->initElementSandbox();
$this->addInput('merchantName', 'Merchant Name');
$this->addInput('merchantEmail', 'Merchant Email');
$this->addInput('merchantUrl', 'Merchant Url');
$this->addInput('terminal', 'Terminal');
$this->addInput('key', 'Key');
}