currencySwitcherSettings = $settings; return $this; } /** * @since 3.0.0 */ public function getCurrencySwitcherSettings(): array { return $this->currencySwitcherSettings; } /** * @since 3.0.0 */ public function currencySwitcherMessage(string $message): DonationForm { $this->currencySwitcherMessage = $message; return $this; } /** * @since 3.0.0 */ public function defaultCurrency(string $currency): DonationForm { $this->defaultCurrency = $currency; return $this; } /** * @since 3.0.0 */ public function getDefaultCurrency(): string { return $this->defaultCurrency; } }