From cbaf1ed6a62cd8cbc14268420dbf98a2335c2651 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 21 Jun 2020 20:08:27 +0800 Subject: [PATCH] Fix customer signature issue #424 --- src/Entity/JOExtra.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/JOExtra.php b/src/Entity/JOExtra.php index 4784c629..b93b1e25 100644 --- a/src/Entity/JOExtra.php +++ b/src/Entity/JOExtra.php @@ -189,7 +189,7 @@ class JOExtra public function setCustomerSignature($sig_file) { - $this->cust_signature($sig_file); + $this->cust_signature = $sig_file; return $this; }