public function ReportInterface::getIssues in Drupal 7 to 8/9 Module Upgrader 8
Returns all issues collected so far, optionally filtered by a tag.
Parameters
string|null $tag: (optional) A tag name. If set, only issues which have this tag will be returned (regardless of the tag's value in each issue -- it's up to the calling code to do any further filtering).
Return value
1 method overrides ReportInterface::getIssues()
- Report::getIssues in src/
Report.php - Returns all issues collected so far, optionally filtered by a tag.
File
- src/
ReportInterface.php, line 31
Class
- ReportInterface
- Defines a report generated by the dmu-analyze command. Issues returned by analyzers are added to this report, then it's handed off to the theme system.
Namespace
Drupal\drupalmoduleupgraderCode
public function getIssues($tag = NULL);