From 81bfe0cbbc4a51d23040511e9cff3267db04fa93 Mon Sep 17 00:00:00 2001 From: ellynoize Date: Wed, 29 Jan 2025 09:20:36 +0300 Subject: [PATCH] fix codestyle --- intaro.retailcrm/lib/icml/icmlwriter.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/intaro.retailcrm/lib/icml/icmlwriter.php b/intaro.retailcrm/lib/icml/icmlwriter.php index 165d9d63..e9f00353 100644 --- a/intaro.retailcrm/lib/icml/icmlwriter.php +++ b/intaro.retailcrm/lib/icml/icmlwriter.php @@ -175,9 +175,7 @@ class IcmlWriter */ private function writeOptionalSimpleElement(string $name, $value, bool $isEmptyAllowed = false): void { - if (!empty($value)) { - $this->writeSimpleElement($name, $value); - } elseif ($isEmptyAllowed) { + if (!empty($value) || $isEmptyAllowed) { $this->writeSimpleElement($name, $value); } }