From c0bafdaa80a88d1bc2cd09326fbe6dbf243f9088 Mon Sep 17 00:00:00 2001 From: Vitalii Shtykhno Date: Wed, 6 Nov 2024 13:49:56 +0100 Subject: [PATCH] chore: indent continue block --- src/qtism/data/storage/xml/Utils.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/qtism/data/storage/xml/Utils.php b/src/qtism/data/storage/xml/Utils.php index 8f70cae2a..87bbfca84 100644 --- a/src/qtism/data/storage/xml/Utils.php +++ b/src/qtism/data/storage/xml/Utils.php @@ -412,8 +412,7 @@ public static function xmlSpecialChars(string $value): string $esc = "\u{FFFD}"; break; } - - continue 2; + continue 2; } $result .= substr($value, $last, $i - $last - $width) . $esc; $last = $i;