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