target = match ($target) { 'SMS' => campaign_type::sms, 'EMAIL' => campaign_type::email }; return $this; } public function get_string() : string { return match ($this->target) { campaign_type::sms => 'SMS', campaign_type::email => 'EMAIL' }; } }