uswds_blb_configuration-1.0.0-beta2/src/Annotation/Style.php
src/Annotation/Style.php
<?php
namespace Drupal\uswds_blb_configuration\Annotation;
use Drupal\Component\Annotation\Plugin;
use Drupal\Core\Annotation\Translation;
/**
* Defines a style form plugin annotation object.
*
* @Annotation
*/
class Style extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public string $id;
/**
* The title of the styles group plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public Translation $title;
/**
* An integer to determine the weight of this style.
*
* @var int|null
*/
public ?int $weight = NULL;
}
