Mercurial > hg > cmmr2012-drupal-site
annotate modules/contrib/migrate_plus/src/AuthenticationPluginBase.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
rev | line source |
---|---|
Chris@4 | 1 <?php |
Chris@4 | 2 |
Chris@4 | 3 namespace Drupal\migrate_plus; |
Chris@4 | 4 |
Chris@4 | 5 use Drupal\Core\Plugin\PluginBase; |
Chris@4 | 6 use Symfony\Component\DependencyInjection\ContainerInterface; |
Chris@4 | 7 |
Chris@4 | 8 /** |
Chris@4 | 9 * Defines a base authentication implementation. |
Chris@4 | 10 * |
Chris@4 | 11 * @see \Drupal\migrate_plus\Annotation\Authentication |
Chris@4 | 12 * @see \Drupal\migrate_plus\AuthenticationPluginInterface |
Chris@4 | 13 * @see \Drupal\migrate_plus\AuthenticationPluginManager |
Chris@4 | 14 * @see plugin_api |
Chris@4 | 15 */ |
Chris@4 | 16 abstract class AuthenticationPluginBase extends PluginBase implements AuthenticationPluginInterface { |
Chris@4 | 17 |
Chris@4 | 18 /** |
Chris@4 | 19 * {@inheritdoc} |
Chris@4 | 20 */ |
Chris@4 | 21 public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { |
Chris@4 | 22 return new static($configuration, $plugin_id, $plugin_definition); |
Chris@4 | 23 } |
Chris@4 | 24 |
Chris@4 | 25 } |