fix codestyle
This commit is contained in:
parent
f0fa3d7791
commit
81bfe0cbbc
1 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue