You are here

ProdCheckProcessor.php in Production check & Production monitor 8

File

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

namespace Drupal\prod_check\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object for prod check processors.
 *
 * @Annotation
 */
class ProdCheckProcessor extends Plugin {

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

  /**
   * The title of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

}

Classes

Namesort descending Description
ProdCheckProcessor Defines a Plugin annotation object for prod check processors.