comparison core/modules/migrate_drupal/src/Annotation/MigrateField.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents c2387f117808
children
comparison
equal deleted inserted replaced
17:129ea1e6d783 18:af1871eacc83
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 }