From 92d5cde2877951ec137037e8e636e28b762d4556 Mon Sep 17 00:00:00 2001 From: Sanja Date: Mon, 11 Mar 2024 11:34:29 -0700 Subject: [PATCH 1/2] Resolve PHP Syntax Error in Concatenation --- ProcessMaker/Jobs/SyncGuidedTemplates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProcessMaker/Jobs/SyncGuidedTemplates.php b/ProcessMaker/Jobs/SyncGuidedTemplates.php index 2f033ad541..fb972cab4b 100644 --- a/ProcessMaker/Jobs/SyncGuidedTemplates.php +++ b/ProcessMaker/Jobs/SyncGuidedTemplates.php @@ -190,7 +190,7 @@ private function importProcess($payload, $assetType) return $rootLog['newId']; } catch (Exception $e) { - throw new Exception('Error:', $e->getMessage()); + throw new Exception('Error:' . $e->getMessage()); } } From dd4637dab873cfdcdce612092e7e9a2d8dd9fe3f Mon Sep 17 00:00:00 2001 From: Sanja Date: Mon, 11 Mar 2024 11:39:06 -0700 Subject: [PATCH 2/2] Add spacing --- ProcessMaker/Jobs/SyncGuidedTemplates.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProcessMaker/Jobs/SyncGuidedTemplates.php b/ProcessMaker/Jobs/SyncGuidedTemplates.php index fb972cab4b..8d5ce80f8d 100644 --- a/ProcessMaker/Jobs/SyncGuidedTemplates.php +++ b/ProcessMaker/Jobs/SyncGuidedTemplates.php @@ -190,7 +190,7 @@ private function importProcess($payload, $assetType) return $rootLog['newId']; } catch (Exception $e) { - throw new Exception('Error:' . $e->getMessage()); + throw new Exception('Error: ' . $e->getMessage()); } }