public function SupportedCurrency::getMaximumAmount in Payment 8.2
Gets the highest supported amount.
Return value
int|float|null The amount or NULL if there is no maximum amount.
Overrides SupportedCurrencyInterface::getMaximumAmount
File
- src/
Plugin/ Payment/ Method/ SupportedCurrency.php, line 64
Class
- SupportedCurrency
- Provides a currency that is supported by a payment method.
Namespace
Drupal\payment\Plugin\Payment\MethodCode
public function getMaximumAmount() {
return $this->maximumAmount;
}