config_normalizer-8.x-1.0-alpha6/src/Annotation/ConfigNormalizer.php
src/Annotation/ConfigNormalizer.php
<?php
namespace Drupal\config_normalizer\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Config normalizer item annotation object.
*
* @see \Drupal\config_normalizer\Plugin\ConfigNormalizerManager
* @see plugin_api
*
* @Annotation
*/
class ConfigNormalizer extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The label of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The weight of the plugin.
*
* @var int
*/
public $weight;
/**
* The description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
