commerce_gc_client-8.x-1.9/src/Attribute/RecurrenceRules.php
src/Attribute/RecurrenceRules.php
<?php
declare(strict_types=1);
namespace Drupal\commerce_gc_client\Attribute;
use Drupal\Component\Plugin\Attribute\AttributeBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* The commerce_gc_client.recurrence_rules attribute.
*/
#[\Attribute(\Attribute::TARGET_CLASS)]
final class RecurrenceRules extends AttributeBase {
/**
* Constructs a new CommerceGcClientVariation instance.
*
* @param string $id
* The plugin ID. There are some implementation bugs that make the plugin
* available only if the ID follows a specific pattern. It must be either
* identical to group or prefixed with the group. E.g. if the group is "foo"
* the ID must be either "foo" or "foo:bar".
* @param class-string $form
* The plugin form class.
* @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $label
* (optional) The human-readable name of the plugin.
* @param \Drupal\Core\StringTranslation\TranslatableMarkup|null $description
* (optional) A brief description of the plugin.
* @param class-string|null $deriver
* (optional) The deriver class.
*/
public function __construct(
public readonly string $id,
public readonly string $form,
public readonly ?TranslatableMarkup $label,
public readonly ?TranslatableMarkup $description = NULL,
public readonly ?string $deriver = NULL,
) {}
}
