fix gitlab tests

This commit is contained in:
root
2026-06-09 02:32:58 -04:00
parent 20a0b6c4e5
commit 6def9993da
1489 changed files with 10449 additions and 11356 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));