You are here

MessagePurge.php in Message 8

File

src/Annotation/MessagePurge.php
View source
<?php

namespace Drupal\message\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a MessagePurge annotation object.
 *
 * @Annotation
 */
class MessagePurge extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

  /**
   * A short description of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $description;

}

Classes

Namesort descending Description
MessagePurge Defines a MessagePurge annotation object.