From ec0e7c165481169e58a7cc0bd87bc6c73f4964c0 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Wed, 7 Mar 2018 21:29:22 +0800 Subject: [PATCH] Add default value for customer title #38 --- src/Entity/Customer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Entity/Customer.php b/src/Entity/Customer.php index f04a794d..439fb554 100644 --- a/src/Entity/Customer.php +++ b/src/Entity/Customer.php @@ -112,6 +112,7 @@ class Customer $this->customer_classification = CustomerClassification::REGULAR; $this->customer_notes = ''; + $this->title = ''; $this->flag_confirmed = false; $this->flag_mobile_app = false;