Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaymo committed Jan 11, 2024
1 parent 3898ddf commit 2c54aaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Payment/MollieOrderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ public function onWebhookAction()
$order->get_status() === 'processing'
&& method_exists($payment, 'isCompleted')
&& $payment->isCompleted()
&& method_exists($payment_object, 'onWebhookCompleted'
)) {
&& method_exists($payment_object, 'onWebhookCompleted')
) {
$payment_object->onWebhookCompleted($order, $payment, $payment_method_title);
}
return;
Expand Down

0 comments on commit 2c54aaf

Please sign in to comment.