Add unit and integration tests for collected invoice queue handling, route hardening, lifecycle validation, and manual batch processing logic.

This commit is contained in:
Jeppe Bundgaard
2026-04-08 15:53:22 +02:00
parent c5cd42be7f
commit 653680376a
26 changed files with 2974 additions and 428 deletions
+2 -1
View File
@@ -28,7 +28,8 @@ trait route_t
public function __construct()
{
$this->route = $_SERVER['REQUEST_URI'];
$requestUri = $_SERVER['REQUEST_URI'] ?? '/';
$this->route = is_string($requestUri) && $requestUri !== '' ? $requestUri : '/';
}
public function run(): void