Refactor ProfileController

This commit is contained in:
Roberto Guagliardo
2025-07-23 21:01:00 +02:00
parent 9cce21d080
commit 0336484f34
3 changed files with 7 additions and 5 deletions

View File

@@ -16,7 +16,7 @@
// 3. Maskeren vanaf derde teken, spaties zichtbaar houden
$masked = '';
$chars = mb_str_split($cleanValue); // Split veilig per karakter
$chars = mb_str_split($cleanValue);
foreach ($chars as $i => $char) {
if ($i < 2) {