You are here

public function MarkdownConfig::setKeyPrefix in Markdown 8.2

Sets the key prefix.

Parameters

string $keyPrefix: The key prefix to set.

Return value

static

File

src/Config/MarkdownConfig.php, line 130

Class

MarkdownConfig
Markdown Config.

Namespace

Drupal\markdown\Config

Code

public function setKeyPrefix($keyPrefix) {
  $this->keyPrefix = rtrim($keyPrefix, '.');
  return $this;
}