Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / FixerInterface.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\drupalmoduleupgrader\FixerInterface.
6  */
7
8 namespace Drupal\drupalmoduleupgrader;
9
10 use Drupal\Core\Executable\ExecutableInterface;
11
12 /**
13  * Interface implemented by all fixer plugins, which do small, isolated
14  * modifications to a code base. They're basically PHP_CodeSniffer fixers
15  * on steroids.
16  */
17 interface FixerInterface extends ExecutableInterface {
18
19   /**
20    * Sets the target module to operate on.
21    *
22    * @param \Drupal\drupalmoduleupgrader\TargetInterface $target
23    */
24   public function setTarget(TargetInterface $target);
25
26 }