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
- interface \Drupal\Core\Executable\ExecutableInterface
- interface \Drupal\drupalmoduleupgrader\FixerInterface
Expanded class hierarchy of FixerInterface
All classes that implement FixerInterface
1 string reference to 'FixerInterface'
File
- src/
FixerInterface.php, line 12
Namespace
Drupal\drupalmoduleupgraderView source
interface FixerInterface extends ExecutableInterface {
/**
* Sets the target module to operate on.
*
* @param \Drupal\drupalmoduleupgrader\TargetInterface $target
*/
public function setTarget(TargetInterface $target);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ExecutableInterface:: |
public | function | Executes the plugin. | 20 |
FixerInterface:: |
public | function | Sets the target module to operate on. | 1 |