🚿 implode() use without $glue parameter (discouraged)

This commit is contained in:
smiley
2024-11-21 16:43:04 +01:00
parent c76c70b3f2
commit c4cd1c9aa1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -200,7 +200,7 @@ final class Hanzi extends QRDataModeAbstract{
$length--;
}
return mb_convert_encoding(implode($buffer), mb_internal_encoding(), self::ENCODING);
return mb_convert_encoding(implode('', $buffer), mb_internal_encoding(), self::ENCODING);
}
}
+1 -1
View File
@@ -186,7 +186,7 @@ final class Kanji extends QRDataModeAbstract{
$length--;
}
return mb_convert_encoding(implode($buffer), mb_internal_encoding(), self::ENCODING);
return mb_convert_encoding(implode('', $buffer), mb_internal_encoding(), self::ENCODING);
}
}