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\ConfigCode
public function setKeyPrefix($keyPrefix) {
$this->keyPrefix = rtrim($keyPrefix, '.');
return $this;
}