You are here

protected function MollieProfile::getTypedConfig in Mollie Payment 8.2

Gets the typed config manager.

Return value

\Drupal\Core\Config\TypedConfigManagerInterface

Overrides ConfigEntityBase::getTypedConfig

File

src/Entity/MollieProfile.php, line 169

Class

MollieProfile
Defines a Mollie profile entity.

Namespace

Drupal\mollie_payment\Entity

Code

protected function getTypedConfig() {
  if (!$this->typedConfigManager) {
    $this->typedConfigManager = parent::getTypedConfig();
  }
  return $this->typedConfigManager;
}