From 49cdc6b2a6abc6324db3d184b3c67bb9e6b85167 Mon Sep 17 00:00:00 2001 From: MrNicodemuz Date: Thu, 28 May 2020 09:37:17 +0800 Subject: [PATCH] CHARGE_PENDING event has wrong event name Not sure if this is an actual bug or not. Was browsing the code and happen to see a potential bug. --- Event/StripeEvent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Event/StripeEvent.php b/Event/StripeEvent.php index b7f6c6a..bfe9e6f 100644 --- a/Event/StripeEvent.php +++ b/Event/StripeEvent.php @@ -10,7 +10,7 @@ class StripeEvent extends Event { const CHARGE_CAPTURED = 'stripe.charge.captured'; const CHARGE_FAILED = 'stripe.charge.failed'; - const CHARGE_PENDING = 'charge.pending'; + const CHARGE_PENDING = 'stripe.charge.pending'; const CHARGE_REFUNDED = 'stripe.charge.refunded'; const CHARGE_SUCCEEDED = 'stripe.charge.succeeded'; const CHARGE_UPDATED = 'stripe.charge.updated';