comparison core/modules/migrate_drupal/src/Annotation/MigrateField.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
69 * 69 *
70 * @var string 70 * @var string
71 */ 71 */
72 public $destination_module; 72 public $destination_module;
73 73
74 /**
75 * The weight of this plugin relative to other plugins.
76 *
77 * The weight of this plugin relative to other plugins servicing the same
78 * field type and core version. The lowest weighted applicable plugin will be
79 * used for each field.
80 *
81 * @var int
82 */
83 public $weight = 0;
84
74 } 85 }