protected function PaymentMethodConfiguration::getTypedConfig in Payment 8.2
Gets the typed config manager.
Return value
\Drupal\Core\Config\TypedConfigManagerInterface
Overrides ConfigEntityBase::getTypedConfig
File
- src/
Entity/ PaymentMethodConfiguration.php, line 258
Class
- PaymentMethodConfiguration
- Defines a payment method configuration entity.
Namespace
Drupal\payment\EntityCode
protected function getTypedConfig() {
if (!$this->typedConfigManager) {
$this->typedConfigManager = parent::getTypedConfig();
}
return $this->typedConfigManager;
}