adasdas
All checks were successful
Deploy / deploy-staging (push) Successful in 24s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-15 23:19:24 +02:00
parent 033fdfd598
commit 2c3c84e66f
8 changed files with 164 additions and 8 deletions

View File

@@ -51,6 +51,14 @@ final class RegistrationService
return $this->store->find($id);
}
/**
* @return array<string, mixed>|null
*/
public function findLatestByUsername(string $username): ?array
{
return $this->store->findLatestByUsername($username);
}
/**
* @param array<string, string> $input
* @return array{success: bool, errors?: array<int, string>, request?: array<string, mixed>}