You are here

CommerceCheckoutFlow.php in Commerce Core 8.2

File

modules/checkout/src/Annotation/CommerceCheckoutFlow.php
View source
<?php

namespace Drupal\commerce_checkout\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines the checkout flow plugin annotation object.
 *
 * Plugin namespace: Plugin\Commerce\CheckoutFlow.
 *
 * @Annotation
 */
class CommerceCheckoutFlow extends Plugin {

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

  /**
   * The human-readable name of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

}

Classes

Namesort descending Description
CommerceCheckoutFlow Defines the checkout flow plugin annotation object.