add test batches

This commit is contained in:
root
2026-06-08 23:45:55 -04:00
parent c792b8be05
commit 8d4d610b82
1480 changed files with 22587 additions and 10762 deletions
+4 -5
View File
@@ -2,7 +2,6 @@
namespace App\Services;
use App\Http\Controllers\Api\Reports\FilesController;
use Illuminate\Support\Facades\Route;
/**
@@ -139,10 +138,10 @@ final class ApplicationUrlService
return route('api.timeoff.notify', ['token' => $token]);
}
/** Served by {@see FilesController::receipt} (uploads/receipts). */
/** Served by {@see \App\Http\Controllers\Api\Reports\FilesController::receipt} (uploads/receipts). */
public function forReceiptStorage(?string $filename): ?string
{
if (! $filename) {
if (!$filename) {
return null;
}
$safe = basename(trim($filename));
@@ -150,10 +149,10 @@ final class ApplicationUrlService
return $safe !== '' ? route('api.v1.files.receipt', ['name' => $safe]) : null;
}
/** Served by {@see FilesController::reimb} (uploads/reimbursements). */
/** Served by {@see \App\Http\Controllers\Api\Reports\FilesController::reimb} (uploads/reimbursements). */
public function forReimbursementStorage(?string $filename): ?string
{
if (! $filename) {
if (!$filename) {
return null;
}
$safe = basename(trim($filename));