comparison modules/contrib/migrate_plus/src/AuthenticationPluginBase.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents
children
comparison
equal deleted inserted replaced
3:307d7a7fd348 4:a9cd425dd02b
1 <?php
2
3 namespace Drupal\migrate_plus;
4
5 use Drupal\Core\Plugin\PluginBase;
6 use Symfony\Component\DependencyInjection\ContainerInterface;
7
8 /**
9 * Defines a base authentication implementation.
10 *
11 * @see \Drupal\migrate_plus\Annotation\Authentication
12 * @see \Drupal\migrate_plus\AuthenticationPluginInterface
13 * @see \Drupal\migrate_plus\AuthenticationPluginManager
14 * @see plugin_api
15 */
16 abstract class AuthenticationPluginBase extends PluginBase implements AuthenticationPluginInterface {
17
18 /**
19 * {@inheritdoc}
20 */
21 public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
22 return new static($configuration, $plugin_id, $plugin_definition);
23 }
24
25 }