d315bdd010fed4d817e078da827e917abfa01e56
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / AnalyzerInterface.php
1 <?php
2
3 namespace Drupal\drupalmoduleupgrader;
4
5 /**
6  * Interface for plugins which can analyze a target module and flag potential
7  * or existing issues.
8  */
9 interface AnalyzerInterface {
10
11   /**
12    * Analyzes a target module and flags any issues found.
13    *
14    * @param TargetInterface $target
15    *  The target module.
16    *
17    * @return \Drupal\drupalmoduleupgrader\IssueInterface[]
18    */
19   public function analyze(TargetInterface $target);
20
21 }