You are here

interface FixerInterface in Drupal 7 to 8/9 Module Upgrader 8

Interface implemented by all fixer plugins, which do small, isolated modifications to a code base. They're basically PHP_CodeSniffer fixers on steroids.

Hierarchy

Expanded class hierarchy of FixerInterface

All classes that implement FixerInterface

1 string reference to 'FixerInterface'
drupalmoduleupgrader.services.yml in ./drupalmoduleupgrader.services.yml
drupalmoduleupgrader.services.yml

File

src/FixerInterface.php, line 12

Namespace

Drupal\drupalmoduleupgrader
View source
interface FixerInterface extends ExecutableInterface {

  /**
   * Sets the target module to operate on.
   *
   * @param \Drupal\drupalmoduleupgrader\TargetInterface $target
   */
  public function setTarget(TargetInterface $target);

}

Members

Namesort descending Modifiers Type Description Overrides
ExecutableInterface::execute public function Executes the plugin. 20
FixerInterface::setTarget public function Sets the target module to operate on. 1