event; } /** * Set the related event. * * @param array $value * * @return void */ protected function setEntity(array $value): void { $this->event = $value; } public function getRecipients(): array { // TODO: Implement getRecipients() method. } /** * Get a list of participants status that are enabled for the mailing list. * * @return array */ public static function getEnabledParticipantStatus(): array { return MailingListSettings::get(E::SHORT_NAME . '_participant_status'); } public static function create(array $values): BaseMailingList { // TODO: Implement create() method. } }