6f9de0aeccd723663932e61b823233b3f7498c3d
[yaffs-website] / web / modules / contrib / migrate_plus / src / Annotation / DataParser.php
1 <?php
2
3 namespace Drupal\migrate_plus\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a data parser annotation object.
9  *
10  * Plugin Namespace: Plugin\migrate_plus\data_parser
11  *
12  * @see \Drupal\migrate_plus\DataParserPluginBase
13  * @see \Drupal\migrate_plus\DataParserPluginInterface
14  * @see \Drupal\migrate_plus\DataParserPluginManager
15  * @see plugin_api
16  *
17  * @Annotation
18  */
19 class DataParser extends Plugin {
20
21   /**
22    * The plugin ID.
23    *
24    * @var string
25    */
26   public $id;
27
28   /**
29    * The title of the plugin.
30    *
31    * @var \Drupal\Core\Annotation\Translation
32    *
33    * @ingroup plugin_translatable
34    */
35   public $title;
36
37 }