commerce_paypal-8.x-1.0-beta11/src/PluginForm/Fastlane/PaymentOffsiteForm.php
src/PluginForm/Fastlane/PaymentOffsiteForm.php
<?php
namespace Drupal\commerce_paypal\PluginForm\Fastlane;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\commerce_payment\PluginForm\PaymentOffsiteForm as BasePaymentOffsiteForm;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides the Off-site form for Fastlane by PayPal.
*/
class PaymentOffsiteForm extends BasePaymentOffsiteForm implements ContainerInjectionInterface {
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return [];
}
}
