From e44d8d3b06b010ea7070a73e95b963c98ed0c55e Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Fri, 29 Apr 2022 05:03:17 +0000 Subject: [PATCH] Add Referral to source of awareness dropdown. #661 --- src/Ramcar/SourceOfAwareness.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Ramcar/SourceOfAwareness.php b/src/Ramcar/SourceOfAwareness.php index a466798f..656b1725 100644 --- a/src/Ramcar/SourceOfAwareness.php +++ b/src/Ramcar/SourceOfAwareness.php @@ -11,6 +11,7 @@ class SourceOfAwareness extends NameValue const FLYERS = 'flyers'; const WORD_OF_MOUTH = 'word_of_mouth'; const OTHER = 'other'; + const REFERRAL = 'referral'; const COLLECTION = [ 'facebook' => 'Facebook', @@ -19,6 +20,7 @@ class SourceOfAwareness extends NameValue 'tarp_ads' => 'Tarp Ads', 'flyers' => 'Flyers', 'word_of_mouth' => 'Word of Mouth', + 'referral' => 'Referral', 'other' => 'Other', ]; }