You are here

CC.php in Stripe 2.x

File

src/Element/CC.php
View source
<?php

namespace Drupal\stripe\Element;

use Drupal\Core\Form\FormStateInterface;

/**
 * Provides a form element that will be rendered by stripe elements.
 *
 * @see https://stripe.com/docs/elements
 *
 * Usage example:
 * @code
 * @endcode
 * *
 * @FormElement("stripe")
 */
class CC extends StripeBase {
  protected static $type = 'card';

}

Classes

Namesort descending Description
CC Provides a form element that will be rendered by stripe elements.