You are here

protected function PaymentStatus::getTypedConfig in Payment 8.2

Gets the typed config manager.

Return value

\Drupal\Core\Config\TypedConfigManagerInterface

Overrides ConfigEntityBase::getTypedConfig

File

src/Entity/PaymentStatus.php, line 187

Class

PaymentStatus
Defines a payment status entity.

Namespace

Drupal\payment\Entity

Code

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