Skip to content

Commit

Permalink
fix: remove unused import. add unreleased tag. add return type.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaHungDinh committed Dec 8, 2023
1 parent 2d595f3 commit 51fa3fd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/FormMigration/Steps/MailchimpSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@

use Give\FormMigration\Contracts\FormMigrationStep;
use Give\Framework\Blocks\BlockModel;
use Give\Log\Log;

/**
* @unreleased
*/
class MailchimpSettings extends FormMigrationStep
{
/**
* @unreleased
*/
public function process()
public function process(): void
{
$prevFormId = $this->formV2->id;

Expand Down Expand Up @@ -66,7 +68,6 @@ private function getAttributes($prevFormId): array

'defaultAudiences' => $this->getFormMetaValue($prevFormId, '_give_mailchimp') ??
give_get_option('give_mailchimp_list', []),

];
}
}

0 comments on commit 51fa3fd

Please sign in to comment.