You are here

WebformScheduledTask.php in Webform Scheduled Tasks 8.2

File

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

namespace Drupal\webform_scheduled_tasks\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Annotation for a task plugin.
 *
 * @Annotation
 */
class WebformScheduledTask extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable label.
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

}

Classes

Namesort descending Description
WebformScheduledTask Annotation for a task plugin.