mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
Refactor Base64 encoding/decoding methods for consistency, update controller routes, and improve CI configuration
This commit is contained in:
@@ -30,7 +30,7 @@ class CandidateRepository extends ServiceEntityRepository
|
||||
public function getCandidateByHash(Season $season, string $hash): ?Candidate
|
||||
{
|
||||
try {
|
||||
$name = Base64::base64_url_decode($hash);
|
||||
$name = Base64::base64UrlDecode($hash);
|
||||
} catch (UrlException) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user