Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
AuthorizationConsumer
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Drupal\authorization\Annotation;
6
7use Drupal\Component\Annotation\Plugin;
8
9/**
10 * Defines a Authorization consumer item annotation object.
11 *
12 * @see \Drupal\authorization\Consumer\ConsumerPluginManager
13 * @see plugin_api
14 *
15 * @Annotation
16 */
17class AuthorizationConsumer extends Plugin {
18
19  /**
20   * The plugin ID.
21   *
22   * @var string
23   */
24  public $id;
25
26  /**
27   * The label of the plugin.
28   *
29   * @var \Drupal\Core\Annotation\Translation
30   *
31   * @ingroup plugin_translatable
32   */
33  public $label;
34
35}