You are here

public function ImmutableMarkdownConfig::delete in Markdown 8.2

Deletes the configuration object.

Return value

$this The configuration object.

Overrides Config::delete

File

src/Config/ImmutableMarkdownConfig.php, line 40

Class

ImmutableMarkdownConfig
Immutable Markdown Config.

Namespace

Drupal\markdown\Config

Code

public function delete() {
  throw new ImmutableConfigException("Can not delete immutable configuration {$this->getName()}. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object");
}