public function Issue::setTitle in Drupal 7 to 8/9 Module Upgrader 8
Sets the title of the issue.
Parameters
string $title:
Return value
$this
Overrides IssueInterface::setTitle
1 call to Issue::setTitle()
- Issue::__construct in src/
Issue.php
File
- src/
Issue.php, line 78
Class
Namespace
Drupal\drupalmoduleupgraderCode
public function setTitle($title) {
$this->title = (string) $title;
return $this;
}