1
0
Fork 0
mirror of synced 2025-04-05 06:43:32 +03:00

fix codestyle

This commit is contained in:
ellynoize 2025-01-29 09:20:36 +03:00
parent f0fa3d7791
commit 81bfe0cbbc

View file

@ -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);
}
}