You are here

ProdCheck.php in Production check & Production monitor 8

File

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

namespace Drupal\prod_check\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object for prod checks.
 *
 * @Annotation
 */
class ProdCheck 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
ProdCheck Defines a Plugin annotation object for prod checks.