second commit

This commit is contained in:
2026-04-11 19:13:40 +02:00
parent 58bcc8f0f3
commit 87f7859017
25 changed files with 488 additions and 87 deletions
+1 -2
View File
@@ -56,7 +56,7 @@ final class UserRepository
$normalized = normalize_username($username);
if ($normalized === '' || $this->find($normalized) !== null) {
throw new RuntimeException('Benutzername existiert bereits oder ist ungueltig.');
throw new RuntimeException('Benutzername existiert bereits oder ist ungültig.');
}
$users = $this->all();
@@ -100,4 +100,3 @@ final class UserRepository
);
}
}