Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / Annotation / Fixer.php
1 <?php
2
3 /**
4  * @file
5  * Contains Drupal\drupalmoduleupgrader\Annotation\Fixer.
6  */
7
8 namespace Drupal\drupalmoduleupgrader\Annotation;
9
10 use Drupal\Component\Annotation\Plugin;
11
12 /**
13  * Defines a Plugin annotation object for DMU fixer plugins.
14  *
15  * Fixers are similar in nature to the fixer classes used by PHP_CodeSniffer,
16  * in the sense that their job is to perform particular, isolated changes
17  * to code. But DMU fixers are a lot more powerful than PHPCS's because a)
18  * they're Drupal plugins, and b) they're using Pharborist.
19  *
20  * Plugin Namespace: Plugin\DMU\Fixer
21  *
22  * @Annotation
23  */
24 class Fixer extends Plugin {
25
26   /**
27    * The plugin ID.
28    *
29    * @var string
30    */
31   public $id;
32
33 }