You are here

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

Gets all fixes queued for this issue. Each fix will be an array with at least a _plugin_id element, containing the plugin ID of the fixer to use. Everything else will be given to the fixer as configuration.

Return value

array[]

Overrides IssueInterface::getFixes

File

src/Issue.php, line 206

Class

Issue

Namespace

Drupal\drupalmoduleupgrader

Code

public function getFixes() {
  return $this->fixes;
}