You are here

public function ParsedMarkdown::setLabel in Markdown 3.0.x

Sets the object's label.

Parameters

string $label: A human-readable label.

Return value

static

Overrides ParsedMarkdownInterface::setLabel

File

src/ParsedMarkdown.php, line 257

Class

ParsedMarkdown

Namespace

Drupal\markdown

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}