You are here

public function MolliePayment::setBrandLabel in Mollie Payment 8.2

Sets the brand label.

Parameters

string $label:

Return value

static

1 call to MolliePayment::setBrandLabel()
MolliePayment::submitConfigurationForm in src/Plugin/Payment/MethodConfiguration/MolliePayment.php
Form submission handler.

File

src/Plugin/Payment/MethodConfiguration/MolliePayment.php, line 364

Class

MolliePayment
Provides the configuration for the mollie_payment payment method plugin.

Namespace

Drupal\mollie_payment\Plugin\Payment\MethodConfiguration

Code

public function setBrandLabel($label) {
  $this->configuration['brand_label'] = $label;
  return $this;
}