Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaymo committed Apr 15, 2024
1 parent 3432b5d commit 2500d07
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 @@ -298,7 +298,7 @@ public function defaultSettings(): array
$fields = $this->getAllFormFields();
//remove setting title fields
$fields = array_filter($fields, static function ($field) {
return isset($field['type']) && $field['type']!== 'title';
return isset($field['type']) && $field['type'] !== 'title';
});
//we don't save the default description or title, in case the language changes
unset($fields['description']);
Expand Down

0 comments on commit 2500d07

Please sign in to comment.