comparison modules/contrib/migrate_plus/src/Annotation/Authentication.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\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8 * Defines an authentication annotation object.
9 *
10 * Plugin namespace: Plugin\migrate_plus\authentication.
11 *
12 * @see \Drupal\migrate_plus\AuthenticationPluginBase
13 * @see \Drupal\migrate_plus\AuthenticationPluginInterface
14 * @see \Drupal\migrate_plus\AuthenticationPluginManager
15 * @see plugin_api
16 *
17 * @Annotation
18 */
19 class Authentication extends Plugin {
20
21 /**
22 * The plugin ID.
23 *
24 * @var string
25 */
26 public $id;
27
28 /**
29 * The title of the plugin.
30 *
31 * @var \Drupal\Core\Annotation\Translation
32 *
33 * @ingroup plugin_translatable
34 */
35 public $title;
36
37 }