Skip to content

Commit

Permalink
Code style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
inpsyde-maticluznar committed Sep 11, 2023
1 parent c44ff1e commit 4c65486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PaymentMethods/AbstractPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function __construct(

public function title(): string
{
$useApiTitle = apply_filters('mollie_wc_gateway_use_api_title', $this->isUseApiTitleChecked(),$this->id);
$useApiTitle = apply_filters('mollie_wc_gateway_use_api_title', $this->isUseApiTitleChecked(), $this->id);
$title = $this->getProperty('title');
//new installations should use the api title
if ($useApiTitle || $title === false) {
Expand Down

0 comments on commit 4c65486

Please sign in to comment.