public function Issue::hasTag in Drupal 7 to 8/9 Module Upgrader 8
Returns if a tag is set on the issue.
Parameters
string $tag: The tag's name.
Return value
bool
Overrides IssueInterface::hasTag
File
- src/
Issue.php, line 176
Class
Namespace
Drupal\drupalmoduleupgraderCode
public function hasTag($tag) {
return array_key_exists($tag, $this->tags);
}