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\EntityCode
public function getMollieClient() {
if (!$this->mollieClient) {
$this
->setMollieClient();
}
return $this->mollieClient;
}