You are here

public function MollieProfile::getMollieClient in Mollie Payment 8.2

Get the Mollie API Client.

File

src/Entity/MollieProfile.php, line 200

Class

MollieProfile
Defines a Mollie profile entity.

Namespace

Drupal\mollie_payment\Entity

Code

public function getMollieClient() {
  if (!$this->mollieClient) {
    $this
      ->setMollieClient();
  }
  return $this->mollieClient;
}