Warmer.php in Warmer 2.x
Same filename and directory in other branches
Namespace
Drupal\warmer\AnnotationFile
src/Annotation/Warmer.phpView source
<?php
namespace Drupal\warmer\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Annotation class for the cache warmer plugins.
*
* @Annotation
*/
class Warmer extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the formatter type.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* A short description of the formatter type.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
/**
* The name of the field formatter class.
*
* This is not provided manually, it will be added by the discovery mechanism.
*
* @var string
*/
public $class;
}