Skip to content

Commit

Permalink
fix: wrap all assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloiankoski committed May 1, 2024
1 parent 0f49b26 commit 4a40b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DonationForms/Properties/FormSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public static function fromArray(array $array): self
$self->secondaryColor = $array['secondaryColor'] ?? '#f49420';
$self->goalAmount = $array['goalAmount'] ?? 0;
$self->registrationNotification = $array['registrationNotification'] ?? false;
$self->customCss = wp_strip_all_tags($array['customCss']) ?? '';
$self->customCss = wp_strip_all_tags($array['customCss'] ?? '');
$self->pageSlug = $array['pageSlug'] ?? '';
$self->goalAchievedMessage = $array['goalAchievedMessage'] ?? __(
'Thank you to all our donors, we have met our fundraising goal.',
Expand Down

0 comments on commit 4a40b87

Please sign in to comment.