for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace h4kuna\Fio\Request\Pay\Payment;
class Euro extends Foreign
{
use Symbols;
public function getExpectedProperty(): array
return [
'accountFrom' => true,
'currency' => true,
'amount' => true,
'accountTo' => true,
'ks' => false,
'vs' => false,
'ss' => false,
'bic' => false,
'date' => true,
'comment' => false,
'benefName' => true,
'benefStreet' => false,
'benefCity' => false,
'benefCountry' => false,
'remittanceInfo1' => false,
'remittanceInfo2' => false,
'remittanceInfo3' => false,
'paymentReason' => false,
'paymentType' => false,
];
}
public function getStartXmlElement(): string
return 'T2Transaction';