You are here

protected function PaymentTestNoResponse::getSupportedCurrencies in Payment 8.2

Returns the supported currencies.

Return value

\Drupal\payment\Plugin\Payment\Method\SupportedCurrencyInterface[]|true Return TRUE to allow all currencies and amounts.

Overrides PaymentMethodBase::getSupportedCurrencies

File

modules/payment_test/src/Plugin/Payment/Method/PaymentTestNoResponse.php, line 27

Class

PaymentTestNoResponse
A testing payment method.

Namespace

Drupal\payment_test\Plugin\Payment\Method

Code

protected function getSupportedCurrencies() {
  return TRUE;
}