drupalmoduleupgrader-8.x-1.5/src/FixerInterface.php
src/FixerInterface.php
<?php
namespace Drupal\drupalmoduleupgrader;
use Drupal\Core\Executable\ExecutableInterface;
/**
* Interface implemented by all fixer plugins, which do small, isolated
* modifications to a code base. They're basically PHP_CodeSniffer fixers
* on steroids.
*/
interface FixerInterface extends ExecutableInterface {
/**
* Sets the target module to operate on.
*
* @param \Drupal\drupalmoduleupgrader\TargetInterface $target
*/
public function setTarget(TargetInterface $target);
}
