Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell committed Dec 29, 2020
1 parent dd8fdcd commit 3cceb47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function boot()
if (!$this->isStripeOrder($order))
return;

$intentId = getIntentFromOrder($order);
$intentId = $this->getIntentFromOrder($order);

$gateway = $this->createGateway($order->payment_method);

Expand All @@ -71,7 +71,7 @@ public function boot()
if (!$this->isStripeOrder($order))
return;

$intentId = getIntentFromOrder($order);
$intentId = $this->getIntentFromOrder($order);

$gateway = $this->createGateway($order->payment_method);

Expand Down

0 comments on commit 3cceb47

Please sign in to comment.