comparison core/modules/migrate/src/Plugin/MigrationPluginManagerInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
38 * @return \Drupal\migrate\Plugin\Migration 38 * @return \Drupal\migrate\Plugin\Migration
39 * The stub migration. 39 * The stub migration.
40 */ 40 */
41 public function createStubMigration(array $definition); 41 public function createStubMigration(array $definition);
42 42
43 /**
44 * Create migrations given a tag.
45 *
46 * @param string $tag
47 * A migration tag we want to filter by.
48 *
49 * @return array|\Drupal\migrate\Plugin\MigrationInterface[]
50 * An array of migration objects with the given tag.
51 */
52 public function createInstancesByTag($tag);
53
43 } 54 }