X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fmigrate%2Fsrc%2FAnnotation%2FMigrateSource.php;fp=web%2Fcore%2Fmodules%2Fmigrate%2Fsrc%2FAnnotation%2FMigrateSource.php;h=8445ca014a576b13bcc5f6e423b566f7653a9552;hp=95a243153601eda54891888e55490cd3cd5e1e52;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/migrate/src/Annotation/MigrateSource.php b/web/core/modules/migrate/src/Annotation/MigrateSource.php index 95a243153..8445ca014 100644 --- a/web/core/modules/migrate/src/Annotation/MigrateSource.php +++ b/web/core/modules/migrate/src/Annotation/MigrateSource.php @@ -43,16 +43,15 @@ class MigrateSource extends Plugin implements MultipleProviderAnnotationInterfac /** * Identifies the system providing the data the source plugin will read. * - * This can be any type, and the source plugin itself determines how the value - * is used. For example, Migrate Drupal's source plugins expect - * source_provider to be the name of a module that must be installed and - * enabled in the source database. + * The source plugin itself determines how the value is used. For example, + * Migrate Drupal's source plugins expect source_module to be the name of a + * module that must be installed and enabled in the source database. * * @see \Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase::checkRequirements * - * @var mixed + * @var string */ - public $source_provider; + public $source_module; /** * Specifies the minimum version of the source provider. @@ -60,7 +59,7 @@ class MigrateSource extends Plugin implements MultipleProviderAnnotationInterfac * This can be any type, and the source plugin itself determines how it is * used. For example, Migrate Drupal's source plugins expect this to be an * integer representing the minimum installed database schema version of the - * module specified by source_provider. + * module specified by source_module. * * @var mixed */