Mercurial > hg > cmmr2012-drupal-site
comparison modules/contrib/migrate_plus/src/DataFetcherPluginBase.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 |
---|---|
16 abstract class DataFetcherPluginBase extends PluginBase implements DataFetcherPluginInterface { | 16 abstract class DataFetcherPluginBase extends PluginBase implements DataFetcherPluginInterface { |
17 | 17 |
18 /** | 18 /** |
19 * {@inheritdoc} | 19 * {@inheritdoc} |
20 */ | 20 */ |
21 public function __construct(array $configuration, $plugin_id, $plugin_definition) { | |
22 parent::__construct($configuration, $plugin_id, $plugin_definition); | |
23 } | |
24 | |
25 /** | |
26 * {@inheritdoc} | |
27 */ | |
28 public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { | 21 public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { |
29 return new static($configuration, $plugin_id, $plugin_definition); | 22 return new static($configuration, $plugin_id, $plugin_definition); |
30 } | 23 } |
31 | 24 |
32 } | 25 } |