Skip to content
Snippets Groups Projects
Unverified Commit 868bdf21 authored by Tom Ashe's avatar Tom Ashe Committed by Tom Ashe
Browse files

Issue #3425625 by TomTech: Fix cSpell issues

parent 5704290a
No related branches found
Tags 11.0.5
No related merge requests found
# module/library/tool words
advancedqueue
ddev
# Proper names
Centarro
# payment processor words
applepay
capturable
cardnumber
dinersclub
googlepay
livemode
scard
unionpay
# SQL aliases
scem
scey
# test keys
pk_test_EnquIXQLnqkP0knhcyRczqe600Iq21pkdd
sk_test_4g69Cl9vOTJxe7bUmy5TRgWE00ytQmCnep
......@@ -37,7 +37,7 @@ PHP library dependency is properly managed:
`composer require "drupal/commerce_stripe:^1.0"`
You must also have a Stripe merchant account or developer access to the account
you intend to configure for your integration. You can signup for one here:
you intend to configure for your integration. You can sign up for one here:
* https://dashboard.stripe.com/register
......
......@@ -124,7 +124,7 @@ class WebhookEventController extends ControllerBase {
$statuses = WebhookEvent::getStatuses();
foreach ($webhook_events as $webhook_event) {
$link = Link::createFromRoute($webhook_event->stripe_event_id, 'commerce_stripe_webhook_event.event', ['webhook_event_id' => $webhook_event->webhook_event_id])->toString();
$processed = ($webhook_event->processed > 0) ? $this->dateFormatter->format($webhook_event->processed, 'custeom', 'Y-m-d H:i:s') : '';
$processed = ($webhook_event->processed > 0) ? $this->dateFormatter->format($webhook_event->processed, 'custom', 'Y-m-d H:i:s') : '';
$status = $statuses[$webhook_event->status];
$rows[] = [
'data' => [
......
......@@ -43,7 +43,7 @@ class StripeEvents {
* payment information form submit button is clicked. It is dispatched
* before any Drupal form submit handlers run, before the remote payment
* method is created at Stripe, and before the local Commerce payment method
* entity is saved. Subscribers may use this event to customise the remote
* entity is saved. Subscribers may use this event to customize the remote
* payment method setup at Stripe.
*
* @Event
......
......@@ -16,7 +16,7 @@ use Stripe\PaymentIntent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Subscribes to order events to syncronize orders with their payment intents.
* Subscribes to order events to synchronize orders with their payment intents.
*
* Payment intents contain the amount which should be charged during a
* transaction. When a payment intent is confirmed server or client side, that
......
......@@ -15,7 +15,7 @@ use Drupal\profile\Entity\ProfileInterface;
interface StripeInterface extends OnsitePaymentGatewayInterface, SupportsAuthorizationsInterface, SupportsRefundsInterface {
/**
* Get the Stripe API Publisable key set for the payment gateway.
* Get the Stripe API Publishable key set for the payment gateway.
*
* @return string
* The Stripe API publishable key.
......
......@@ -174,7 +174,7 @@ class CheckoutTest extends CommerceWebDriverTestBase {
* Strong Customer Authentication.
*
* @dataProvider dataProviderUserAuthenticatedAndCardAuthentication
* @group threeds
* @group threeDS
*/
public function testCheckoutAndPayPayment3ds($authenticated, $pass) {
if ($authenticated) {
......@@ -225,7 +225,7 @@ class CheckoutTest extends CommerceWebDriverTestBase {
* the payment intent.
*
* @dataProvider dataProviderUserAuthenticatedAndCardAuthentication
* @group threeds
* @group threeDS
*/
public function test3dsAlwaysAuthenticate($authenticated, $pass) {
if ($authenticated) {
......@@ -270,7 +270,7 @@ class CheckoutTest extends CommerceWebDriverTestBase {
* Tests checkout with a previously created payment method.
*
* @dataProvider dataProviderExistingPaymentMethodCardNumber
* @group threeds
* @group threeDS
* @group existing
* @group on_session
*/
......@@ -319,7 +319,7 @@ class CheckoutTest extends CommerceWebDriverTestBase {
* Tests checkout with a previously created payment method.
*
* @dataProvider dataProviderExistingPaymentMethodCardNumber
* @group threeds
* @group threeDS
* @group existing
* @group off_session
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment