Add AbstractController, implement flash message handling, and refactor repositories

This commit is contained in:
2025-03-05 21:01:57 +01:00
parent 29bc74fe4f
commit 0ccce51af8
18 changed files with 111 additions and 21 deletions

View File

@@ -14,7 +14,7 @@ class Base64
public static function base64_url_encode(string $input): string
{
return strtr(base64_encode($input), '+/', '-_');
return rtrim(strtr(base64_encode($input), '+/', '-_'), '=');
}
/** @throws UrlException */