You are here

public function Issue::getTitle in Drupal 7 to 8/9 Module Upgrader 8

Returns the title of the issue.

Return value

string

Overrides IssueInterface::getTitle

File

src/Issue.php, line 71

Class

Issue

Namespace

Drupal\drupalmoduleupgrader

Code

public function getTitle() {
  return $this->parser
    ->parseParagraph($this->title);
}